How to use Input button for @Html.ActionLink?
In my cshtml I have this code:
<div>
@Html.ActionLink("Back to menu", "HomeController")
</div>
Now I whant to use instead hyperlink button (Back to menu), input submit button, so this button:
<input class="btn" type="submit" value="Back to menu">
Thanks.