The user action in asp.net MVC is based on controllers and actions that allow you to create pages (or links) for specific sections.
For example, you might need a product editing page so that you have a Product Controller with Edit Action . Then you can create an HTML ActionLink that directs the user to this page.
As a result, "action" will be the ActionResult method that you want to direct your user to.
<%: Html.ActionLink("Edit Product", "Edit", "Product") %> public class ProductController : Controller { public ActionResult Index()
David source share