1.

Explain Using Hyperlink How You Can Navigate From One View To Other View?

Answer»

By using “ActionLink” method as shown in the below CODE. The below code will make a SIMPLE URL which help to navigate to the “HOME” controller and invoke the “GotoHome” action.
Collapse / Copy Code
<%= Html.ActionLink(“Home”, “Gotohome”) %&GT;

By using “ActionLink” method as shown in the below code. The below code will make a simple URL which help to navigate to the “Home” controller and invoke the “GotoHome” action.
Collapse / Copy Code
<%= Html.ActionLink(“Home”, “Gotohome”) %>



Discussion

No Comment Found