Nikola
Nikola

Reputation: 1

ASP.NET MVC jQuery on IIS 6.0

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?

Upvotes: 0

Views: 547

Answers (2)

JoshNaro
JoshNaro

Reputation: 2097

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/

Upvotes: 0

Paul Creasey
Paul Creasey

Reputation: 28834

You got firebug? check in the net tab if your scripts are getting downloaded, you may need to use Html.ResolveUrl() or similar.

Upvotes: 3

Related Questions