当构建这样的代码时:
<script type="text/javascript" src="<%=ResolveUrl("~/js/js.js")%>"></script>
要么
<input type="image" src="<%=ResolveUrl("~/img/submit.png")%>" />
我应该使用Url.Content还是ResolveUrl()?有什么不同?
解决方法
如果您在MVC应用程序中使用IIS URL Rewriting,例如内部处理
http://yoursubdomain.example.com/MyController/MyAction为
http://hosted.example.com/yoursubdomain/MyController/MyAction,Url.Content()将生成正确的子域相对链接。在这种情况下,ResolveUrl()将生成不正确的链接。