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
  • 87,921
  • 11
  • 154
  • 174
Omar
  • 39,496
  • 45
  • 145
  • 213

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,908
  • 5
  • 52
  • 76
  • 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