ASP.NET MVC:生成带有自定义 html 的操作链接

发布于 2024-09-26 19:03:54 字数 143 浏览 0 评论 0原文


如何生成内部包含自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你列表最软的妹 2024-10-03 19:03:54

您可以使用 UrlHelper 类:

<a href="<% =Url.Action("Create","Customers") %>">
    <span class="icon"/> New customer
</a>

MSDN 链接位于此处: http://msdn.microsoft.com/en-us/library/system.web.mvc.urlhelper.aspx

You can use the UrlHelper class :

<a href="<% =Url.Action("Create","Customers") %>">
    <span class="icon"/> New customer
</a>

The MSDN link is here : http://msdn.microsoft.com/en-us/library/system.web.mvc.urlhelper.aspx

策马西风 2024-10-03 19:03:54

对于较新版本的 .net,

请替换

 href="<% =Url.Action("Create","Customers") %>"

href="@Url.Action("Create","Customers")"

以提供类似的内容

<a href="@Url.Action("Create","Customers")">
   <span class="icon"/> New customer 
</a>

For newer versions of .net,

replace

 href="<% =Url.Action("Create","Customers") %>"

with

href="@Url.Action("Create","Customers")"

to give something like

<a href="@Url.Action("Create","Customers")">
   <span class="icon"/> New customer 
</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文