Login
Remember
Register
Ask a Question
How Can We Navigate From One View To Other View Using Hyper-link?
+1
vote
asked
Aug 18, 2019
in
MVC Language
by
sheetalkhandelwal
How Can We Navigate From One View To Other View Using Hyper-link?
#mvc-5-vs-mvc-4
#mvc
#mvc-mvc
#mvc-ado-
net
#mvc-mobile-app-development
#mvc-5-sample-project-with-database
#mvc-extensions
#asp
net-mvc-web-
hosting
#microsoft-asp
net-mvc-2
#asp-mvc-
#microsoft-mvc-4
#mvc-
net-framework
#framewok-tutorial
#framework7-interview-question
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 18, 2019
by
john ganales
By using “ActionLink” method as shown in the below code. The below code will create a simple URL which help tonavigate to the “Home” controller and
invoke the “GotoHome” action.
<%= Html.ActionLink("Home","Gotohome") %>
...