Sai Avinash
Sai Avinash

Reputation: 4753

Does ASP.net MVC support a Page_Load event?

I am new to ASP.net MVC .

To start learning on MVC,i was going through a tutorial on MVC, where they used Page_Load event which is same as in Web forms.

Does MVC Supports events,if so what events are supported.

Please Clarify me about this..

Upvotes: 1

Views: 3231

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038730

,i was going through a tutorial on MVC, where they used Page_Load event which is same as in Web forms.

You could forget about this tutorial. Things like events and Page_Load are not used in an ASP.NET MVC application. You were probably looking at a tutorial about classic WebForms.

You may get started with ASP.NET MVC at the official page: http://asp.net/mvc

Upvotes: 5

Related Questions