button url action html code example
Example 1: button action asp net
<input type="button" value="Create" onclick="location.href='@Url.Action("Create", "User")'" />
Example 2: html button with action link
<input type="button" class="btn btn-info" value="Let's Go!" onclick="location.href='@Url.Action("Action", "Controller")'" />