I am using ASp.NET MVC 3.
Whilst in a View, how do I redirect the User to a View that’s in a different Controller altogether?
I can do: @Html.ActionLink("Go Here", "Index") but I want to direct the user to an Index view of a different Controller.
Any help is highly appreciated.
use another overload from ActionLink
http://msdn.microsoft.com/en-us/library/dd505070%28v=vs.108%29
usage