元标记中的绝对网址
问题描述:
如何在元标记中设置绝对网址?比方说,我在我的MVC4网络应用程序中有下面的标签。元标记中的绝对网址
<link rel="image_src" href="~/content/logo-large.png" />
当我运行web应用程序时,我得到了相对Url在href中解析,但我需要获得绝对url。
答
卢克Duddridge已经指出你the correct post,这里是一个链接到最有用的回答你的问题:https://stackoverflow.com/a/9020514/177710。像这样使用它:
<link rel="image_src" href="@Url.AbsoluteContent("~/content/logo-large.png")" />