Hi
How can we navigate from one view to other view in case of ASP.NET MVC application .Like I want to navigate on button click from page1 to page2
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Abhimanyu K VatsaPosted Dec 8, 2011, 8:30 AM
You can try following Overloaded function for the same
@Html.ActionLink("DisplayName","Action", "Controller","data");
@Html.ActionLink(student.Name, "Subject","Subject", new { studentName = student.Name })