从按钮调用Html.ActionLink?

前端之家收集整理的这篇文章主要介绍了从按钮调用Html.ActionLink?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何调用注册”ActionLink(在标准MVC5上生成的那个)
从引导按钮使用VS2013的项目?

这是原始代码

@Html.ActionLink("Register","Register","Account",routeValues: null,htmlAttributes: new { id = "registerLink" })

我试过这个,但显然它不起作用:

<button type="button" class="btn btn-info" onclick="window.location.href('@Url.Action("Register","Account")')">Add New User</button>

解决方法

<input type="button" class="btn btn-info" value="Let's Go!" onclick="location.href='@Url.Action("Action","Controller")'" />

这应该工作正常……

原文链接:https://www.f2er.com/html/225326.html

猜你在找的HTML相关文章