1

I would like to know when (which event/function) the class System.Web.Mvc.ViewPage runs when it reads the @Page directive of the view.

In particular, I would like to programmaticly interpret the values of the @Page directive, override them, then have the cycle continue.

DaveRandom
  • 86,228
  • 11
  • 149
  • 173
Omar
  • 38,489
  • 44
  • 139
  • 212

1 Answers1

4

This SO question / answer should help you with what you need:

What is the 'page lifecycle' of an ASP.NET MVC page, compared to ASP.NET WebForms?

Community
  • 1
  • 1
Kevin LaBranche
  • 20,729
  • 3
  • 50
  • 75
  • I saw that page. It has me running around in circles, everything is inheriting everything. I'm looking for the exact method that Parses the @Page directive of the .aspx/.ascx file. – Omar Sep 25 '09 at 01:37