Url Rewrite not working in Visual 2013 Professional

I have a project that works well Url rewriting stuff in vs2012 Ultimate , but the same project, if I try to open in VS 2013 Professional then url rewriting doesn't work.

I didn't actually get any errors at the time, but when I click on any links, it shows me like Msgstr "Resource not found."

and the project takes too long to load the index page in VS 2013 Professional compare with VS 2012 final

enter image description here

enter image description here

+3


source to share


1 answer


Your code has nothing with Visual Studio 2012 or 2013. The code you are using will work fine and exactly the same in both versions.

When you run a DLL that is not compiled from the current code. Our Visual Studio did not build an assembly sometime and used the assembly we created last time (maybe the current one has a problem, so VS uses an old compiled copy).



Have you tried to check Rebuild and clean up. Try it, maybe it will help you.

Better you can set URL_Rewriter in IIS on your server.

0


source







All Articles