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
$("#yourbuttonid").click(function(){ document.location = "<%= Url.Action("Youraction") %>";})