如何在标题中带有html标签的asp.net mvc中创建链接?
我如何使用此创建链接 - http://msdn.microsoft.com/en -us/library/dd505243.aspx html.RouteLink 在标题中使用 html 标签? 结果我会看到这样的东西:
<a class="" href="#"><div class="someclass">1</div><div class="someotherclass"></div></a>
How can i create link using this - http://msdn.microsoft.com/en-us/library/dd505243.aspx
html.RouteLink using html tags in title?
In result i would see something like this :
<a class="" href="#"><div class="someclass">1</div><div class="someotherclass"></div></a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不尝试使用 Url.Action() 方法..像这样:
仅建议。示例是使用 Razor 语法编写的,但您也可以简单地将它与 ASPX 视图引擎一起使用...
Why not you try to use Url.Action() method.. Something like this :
Only suggestion. Example is written using Razor syntax, but you can also simple use it with ASPX view engine...