MAK
MAK

Reputation: 59

steps done by Visual studio while running a mvc application

I want to know the steps done by the visual studio while run a MVC application,means sequence of file read by the VS when I press F5?

Upvotes: 1

Views: 41

Answers (1)

Murtaza Munshi
Murtaza Munshi

Reputation: 1085

Firstly it calls Global.asax file. Maps all the things and starting elements are initialised. Then the request goes to the controller & the controller gets data from model parses it into view & responses with the appropriate View being rendered with data from model.

Upvotes: 1

Related Questions