Click here to Skip to main content
15,886,798 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,
How MVC 3 application working in asp.net can anyone explain???
Posted

Check this link in CP:
ASP.NET MVC3 For Beginners[^]
 
Share this answer
 
 
Share this answer
 
If you are looking for ASP.NET MVC Request Response processing , please read the following:

ASP.NET MVC( MODEL VIEW CONTROLLER ) is an architecture to develop ASP.NET web applications in a different manner than the traditional ASP.NET web development. The entire ASP.NET MVC architecture is based on Microsoft .NET Framework.
Like a normal web server interaction, MVC application also accepts requests and responds to the web browser in the same way.
Step 1: IIS takes each HTTP request and invokes ASP.NET that invokes UrlRoutingModule
Step 2: UrlRoutingModule starts routing system. Then routing system parses the incoming Url and constructs a Request Context and searches RouteTable. MvcRouteHandler helps for passing the Request Context which includes parameters parsed from Url and provides access to Request and Response objects.
Step 3: MvcRouteHandler then invokes DefaultControllerFactory which follows a naming convention to choose the correct Controller(C) class for a given request. Controller invokes the correct Action Method.
Step 4: Controller interprets with the Model(M) which manages the behavior and data of the application domain, responds to requests for information about its state. Then returns an ActionResult object and inform the View(V) to change as appropriate.

You will find more detail over here .

OR
Navigate the following two links for more on MVC3 and MVC4:

ASP.NET MVC 4
ASP.NET MVC 3
Let me know if you need further information :)
 
Share this answer
 
hey,

asp.net is different and mvc is different.

before mvc we have only one progrgamming way called webforms.

in 2009 msoft introduce another programming called mvc.


now you go for develop webapps either asp.net or mvc.


i hope this is right answer.

you go www.asp.net there you can found gettting started samples for mvc and asp.net.

regards
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900