我应该使用Url.Content()或RESOLVEURL()在我的MVC的看法? [英] Should I use Url.Content() or ResolveUrl() in my MVC views?

查看:379
本文介绍了我应该使用Url.Content()或RESOLVEURL()在我的MVC的看法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在构建code是这样的:

When building code like this:

<script type="text/javascript" src="<%=ResolveUrl("~/js/js.js")%>"></script>

<input type="image" src="<%=ResolveUrl("~/img/submit.png")%>" />

我应该使用 Url.Content RESOLVEURL()?有什么区别?

推荐答案

如果您使用的MVC应用程序中重写IIS的URL,例如在内部处理<一href="http://yoursubdomain.example.com/MyController/MyAction">http://yoursubdomain.example.com/MyController/MyAction作为<一个href="http://hosted.example.com/yoursubdomain/MyController/MyAction">http://hosted.example.com/yoursubdomain/MyController/MyAction, Url.Content()会产生一个正确的子域相对链接。 RESOLVEURL()将产生在这种情况下,不正确的链接

If you're using IIS URL Rewriting within your MVC application, e.g. internally treating http://yoursubdomain.example.com/MyController/MyAction as http://hosted.example.com/yoursubdomain/MyController/MyAction, Url.Content() will generate a correct subdomain-relative link. ResolveUrl() will generate an incorrect link in this situation.

这篇关于我应该使用Url.Content()或RESOLVEURL()在我的MVC的看法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆