Home >Backend Development >C++ >How to Create Action Links Between Controllers in ASP.NET MVC?
Action Links in ASP.NET MVC
Question:
In ASP.NET MVC, how can I create a link to a specific action in another controller's class, regardless of the current location within the project folder structure?
Answer:
To create an ActionLink between controllers when the caller is in a different folder location, use the Html.ActionLink method with the following parameters:
ASP.NET MVC 1:
The above is the detailed content of How to Create Action Links Between Controllers in ASP.NET MVC?. For more information, please follow other related articles on the PHP Chinese website!