I am new at MVC in Asp.Net and while i am reading about the MVC and it's benefits and why we use this architechure in Asp.Net i didn't know (or misunderstanding) why we use this concept in Asp.Net? but i read an article said that :
WebForms was a bad model that only led people to develop poorly performing web applications.They were largely attributed to the Post-back paradigm that was utilized by most Web Form controls. In any case, MVC tends to be a better pattern because when you Post Back, you are generally going to be more aware of it (because you will probably have to implement some code in the controller). It is not a transparent operation like it tended to be in Web Forms.
So what is the different between posting back in web form and posting back in Asp.net? as in both cases an event is triggered and the form is posted back to server even for the controller and even the form itself so can any one tell me what is the difference ? and why MVC in Asp.Net? what are radicals benefits of MVC in Asp.Net?
Thanks in advance but this will help me more in my application as i am doing some searches b4 building the application to utlilize effectively this new technology.