原始 ActionLink 链接文本
我想将一个按钮作为 @ActionLink()
的文本,但我不能,因为它对我的字符串进行 HTML 转义...我找到了 @Html.Raw()< /code> 机制并尝试了
@ActionLink().ToHtmlString()
但不知道如何将其组合在一起......
我发现 一篇文章,描述了为类似目的构建扩展,但很容易遇到那么多麻烦......必须有一个简单的方法?
I want to put a button as the text of an @ActionLink()
but I can't because it HTML-escapes my string... I found the @Html.Raw()
mechanism and have tried the @ActionLink().ToHtmlString()
but can't figure out how to put it together...
I found an article that describes building an extension for a similar purpose but it's eeky to go to that much trouble... there must be an easy way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以编写一个 helper:
然后使用这个 helper:
给定的默认路由将产生:
You could write a helper:
and then use this helper:
which given default routes would produce:
如果您想创建使用 T4MVC 库的自定义操作链接,您可以编写以下代码:
If you want to create a custom action link that uses T4MVC library, You can write the below code: