如何调用“注册”ActionLink(在标准MVC5上生成的那个)
从引导按钮使用VS2013的项目?
从引导按钮使用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")'" />
这应该工作正常……