ASP.NET MVC:生成带有自定义 html 的操作链接
如何生成内部包含自定义 html 的操作链接。
如下:
新客户
How can I generate action link with custom html inside.
Like following:<a href="http://blah-blah/.....">
<span class="icon"/>
New customer
</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 UrlHelper 类:
MSDN 链接位于此处: http://msdn.microsoft.com/en-us/library/system.web.mvc.urlhelper.aspx
You can use the UrlHelper class :
The MSDN link is here : http://msdn.microsoft.com/en-us/library/system.web.mvc.urlhelper.aspx
对于较新版本的 .net,
请替换
为
以提供类似的内容
For newer versions of .net,
replace
with
to give something like