为 Url.Content() 定义外部 URL

发布于 2024-10-10 15:36:32 字数 375 浏览 2 评论 0原文

有什么方法可以改变 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回眸一遍 2024-10-17 15:36:32

不幸的是没有这样的配置设置。最好的方法是编写自己的辅助扩展方法,挂在您控制的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文