how change <button type="button" class="btn btn-info" onclick="location.href='@Url.Action( controller from the model information code example

Example 1: button action asp net

<input type="button" value="Create" onclick="location.href='@Url.Action("Create", "User")'" />

Example 2: To call any action method from the view on button click

@using (Html.BeginForm("Edit", "Home", new { Id = emp.Id }, FormMethod.Get))
                            {
                                <button>EDIT</button>
                            }
@using (Html.BeginForm("Delete", "Home", new { Id = emp.Id }, FormMethod.Post))
                            {
                                <button>DELETE</button>
                            }