MVC Pattern Clarification

Posted by Amutha on Stack Overflow See other posts from Stack Overflow or by Amutha
Published on 2010-04-06T16:46:47Z Indexed on 2010/04/06 16:53 UTC
Read the original article Hit count: 426

Filed under:
|
|

Just I started learning MVC pattern,ofcourse i am learning it from Microsoft's website.Just i want to gather quiz information from the experts.

My understanding is (correct me then and there)

1 ) MVC does not support server side events ,but supports client side events.if it supports client side events,i need html page with jQuery/Javascript (view),but most of the example i absorbed is to display the information(model) in view ,i did not see any client side event handling happens in view.

2) Except ViewState and controlState,MVC supports Sessions,Application State management,Cache management.

3) When request goes to MVC engine ,the routing module routes the request that is picked up by the controller.The controller in executes the appropriate action and return the appropriate view.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about mvc