Hi everyone, I have big problem with deployment of asp.net mvc application on iis 6.0, i configured aspnet_isapi.dll, and the routing works fine, but json and jquery doesn't work. Any ideas?
+3
A:
You got firebug? check in the net tab if your scripts are getting downloaded, you may need to use Html.ResolveUrl()
or similar.
Paul Creasey
2010-03-10 09:09:26
A:
If the scripts are not loaded correctly, try using the Content() method of the UrlHelper class to get the correct path.
Koen
2010-03-10 12:08:12
A:
Your routing probably works fine for the root directory of your site and Content folder. However, the routing through your isapi filter for your other folders may be wrong. Try moving the JavaScript files to the Content folder, to see if this is the problem.
You may not need this but just in case: http://biasecurities.com/blog/2008/how-to-enable-pretty-urls-with-asp-net-mvc-and-iis6/
JoshNaro
2010-03-10 14:49:29