ASP.NET MVC4 - What is the actual data flow? -


i hear , read flow of interactions in asp.net mvc4 of controller -> model -> view.

but wouldn't accurate flow flow on http get, , flow on http post view -> controller -> model -> controller -> view (same or different - doesn't matter)?

httpget flow

enter image description here

it depends on classifying "view". in case of post, there no server side view code running @ all, browser side code. in response flow there view rendering done on server html (and post). people referring when talking asp.net mvc flow.