我的网站上有一行(MVC)
<td width="80%" align="left"><%: Html.DisplayFor(model => model.Website)%></td>
我想在那一行上结合一个超链接。 如何为推介网站创建超链接?
答案 0 :(得分:3)
只需使用普通的锚<a>
标记
<td width="80%" align="left">
<a href="<%: model.Website %>" target="_blank"><%: model.Website %></a>
</td>
如果您的value
在开头没有http
,只需手动添加,例如:
<a href="http://<%: model.Website %>" ...
答案 1 :(得分:2)
如果您想要花哨或者您的网站上有很多链接,您可以为此创建显示模板。请参阅示例:http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-1-introduction.html