开发者

What's the base class of a Razor View in ASP.NET MVC3

开发者 https://www.devze.com 2023-01-20 06:51 出处:网络
I\'m trying to have all my views inherit from a custom class so that I can add certain beh开发者_JAVA百科aviour and values to all pages, but I\'m having some issues. I tried subclassing System.Web.Mvc

I'm trying to have all my views inherit from a custom class so that I can add certain beh开发者_JAVA百科aviour and values to all pages, but I'm having some issues. I tried subclassing System.Web.Mvc.WebViewPage but I'm forced to implement an Execute procedure that I don't know what it should do. Also, if I try to access the Context variable, I get a null reference (really weird). This leads me to think that I may have the wrong base class....

Any thoughts?


Diego, System.Web.Mvc.WebViewPage is the right base type (and you should have another class inheriting from System.Web.Mvc.WebViewPage<TModel> if you want strongly-typed views). You should mark your own class as abstract so that you are not forced to implement the Execute method.

Update: To configure all your views to use your custom base class, look into the ~\Views\Web.config file. Inside of it there's a Razor-specific section where you can use the pageBaseType attribute to configure your custom type.

As far as the Context property is concerned, it should be fully initialized once the view is executing. However, it might not be available if you try to access it too early (for example, from your classes constructor). When are you trying to access it?


The Execute method is something that is provided by the Razor compiler when your view is compiled. For example, given the following view file

Hello @Name!

The Razor compiler will behind the scenes generate the following class (this is a simplification, so the details might be off, but it should convey the point)

public class _Some_Generated_Class_Name_ : System.Web.Mvc.WebViewPage {
  public void Execute() {
    Write("Hello ");
    Write(Name);
    Write("!");
  }
}

Then the framework calls the Execute method on your view class and your view gets executed.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号