I have a view with a button. When the user clicks the button I want them redirected to a data entry view. How do I accomplish this? I should mention the views are created, t
Just as an addition to the other answers, here is the razor engine syntax:
or
window.location.href = '@Url.Action("actionName", "controllerName")';