How many types of action method we use in MVC? [Resolved]

Posted by Kumarkrishna184 under ASP.NET MVC on 3/9/2016 | Points: 10 | Views : 1532 | Status : [Member] | Replies : 1
How many types of action method we use in MVC?

Thanks and Regards,
Krishna Kumar



Responses

Posted by: Professionaluser on: 3/10/2016 [Member] [MVP] Bronze | Points: 50

Up
0
Down

Resolved
n ASP.NET applications that do not use the MVC framework, user interaction is organized around pages, and around raising and handling events from the page and from controls on the page. In contrast, user interaction with ASP.NET MVC applications is organized around controllers and action methods . The controller defines action methods. Controllers can include as many action methods as needed.
Action methods typically have a one-to-one mapping with user interactions. Examples of user interactions include entering a URL into the browser, clicking a link, and submitting a form . Each of these user interactions causes a request to be sent to the server. In each case, the URL of the request includes information that the MVC framework uses to invoke an action method.

refer
http://www.codeproject.com/Articles/195434/Actions-in-ASP-NET-MVC

Kumarkrishna184, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response