Search Results

5
votes

ASP.NET MVC URL auto-resolution in CSS files

I would not bother with the auto-root-finding ~ character. I understand that you want the same solution to work where the root directory differs between deployments, but within the CSS …
0
votes

Is really impossible to write code in an mvc master page?

Try changing... <%= Html.ScriptInclude("~/Scripts/jquery.1.2.6.js")%> ...to... <%# Html.ScriptInclude("~/Scripts/jquery.1.2.6.js")%> …