为 Url.Content() 定义外部 URL
有什么方法可以改变 Url.Content 渲染机制的行为,以便从外部服务器加载页面中的静态内容?
为了进一步解释,假设您有一个 ASP.NET MVC 2 网站 http://www.example.com 和在某些时候,您希望从 static.example.com 加载静态内容。但是您已经使用 Url.Content("~/Content/images/a.gif") 之类的语法对应用程序进行了编码。从那时起,ASP.NET MVC 中是否存在一些配置更改以将这些 URL 呈现为“http://static.example.com/Content/images/a.gif”?
提前致谢。
Is there any way to alter the behavior of Url.Content rendering mechanism so that my static content in the page is loaded from an external server?
To explain further, suppose you have an ASP.NET MVC 2 website, http://www.example.com and at some point, your want your static content to be loaded from static.example.com . But you have coded your application with syntax like Url.Content("~/Content/images/a.gif"). From that point, is there some configuration change within the ASP.NET MVC to render these URL's as "http://static.example.com/Content/images/a.gif"?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是没有这样的配置设置。最好的方法是编写自己的辅助扩展方法,挂在您控制的
UrlHelper
上。Unforunately there is no such configuration setting. Your best approach would be to write your own helper extension method hanging off of
UrlHelper
that you control.