/CustomActionResultMVC

The purpose of the controller within the MVC pattern is to respond to user input. In ASP.NET MVC, the action method is the granular unit of response to user input. The action method is ultimately responsible for handling a user request and outputting the response that is displayed to the user, which is typically HTML. All action method inherits from ActionResult Class. Which has one method ExecuteResult ().

Primary LanguageJavaScript

This repository is not active