我想使用按钮而不是 ActionLink 重写下面的代码。任何帮助将不胜感激。谢谢。
@Html.ActionLink("Test Link","Index", "Home", new { id = item.id})
是否可以编写类似下面的内容或有更好的方法?我也不确定语法,所以请随时更正。
<input type="button" value="Submit" onclick="location.href='@Url.Action("Index", "Home", new { id = @Model.FirstorDefault.Id.ToString()}, null)'" />