Setup:
Problem:
When a view is strongly typed such as: <@ Page Inherits="CustomViewPage<MyCustomObject" MyCustomProperty="Hello">
, I get a compiler "Parser" error stating that MyCustomProperty is not a public property of System.Web.Mvc.ViewPage
I have done numerous trial and errors (see below) to see whats causing this error and have come to the following conclusions:
Update: Looks like Technitium found another way to do this that looks much easier, at least on newer versions of ASP.NET MVC. (copied his comment below)
I'm not sure if this is new in ASP.NET MVC 3, but when I swapped the Inherits attribute from referencing the generic in C# syntax to CLR syntax, the standard
ViewPageParserFilter
parsed generics correctly -- noCustomViewTypeParserFilter
required. Using Justin's examples, this means swapping
<%@ Page Language="C#" MyNewProperty="From @Page directive!" Inherits="JG.ParserFilter.CustomViewPage<MvcApplication1.Models.FooModel>
to
<%@ Page Language="C#" MyNewProperty="From @Page directive!"` Inherits="JG.ParserFilter.CustomViewPage`1[MvcApplication1.Models.FooModel]>
Original answer below:
OK, I solved this. Was a fascinating exercise, and the solution is non-trivial but not too hard once you get it working the first time.
Here's the underlying issue: the ASP.NET page parser does not support generics as a page type.
The way ASP.NET MVC worked around this was by fooling the underlying page parser into thinking that the page is not generic. They did this by building a custom PageParserFilter and a custom FileLevelPageControlBuilder. The parser filter looks for a generic type, and if it finds one, swaps it out for the non-generic ViewPage type so that the ASP.NET parser doesn't choke. Then, much later in the page compilation lifecycle, their custom page builder class swaps the generic type back in.
This works because the generic ViewPage type derives from the non-generic ViewPage, and all the interesting properties that are set in a @Page directive exist on the (non-generic) base class. So what's really happening when properties are set in the @Page directive is that those property names are being validated against the non-generic ViewPage base class.
Anyway, this works great in most cases, but not in yours because they hardcode ViewPage as the non-generic base type in their page filter implementation and don't provide an easy way to change it. This is why you kept seeing ViewPage in your error message, since the error happens in between when ASP.NET swaps in the ViewPage placeholder and when it swaps back the generic ViewPage right before compilation.
The fix is to create your own version of the following:
Then you need to change the web.config in your views directory (not the main app's web.config) to use these new types instead of MVC's default ones.
I've enclosed some code samples illustrating how this works. Many thanks to Phil Haack's article to help me understand this, although I had to do a lot of poking around the MVC and ASP.NET source code too to really understand it.
First, I'll start with the web.config changes needed in your web.config:
<pages validateRequest="false" pageParserFilterType="JG.ParserFilter.CustomViewTypeParserFilter" pageBaseType="JG.ParserFilter.CustomViewPage" userControlBaseType="JG.ParserFilter.CustomViewUserControl">
Now, here's the page parser filter (#1 above):
namespace JG.ParserFilter { using System; using System.Collections; using System.Web.UI; using System.Web.Mvc; internal class CustomViewTypeParserFilter : PageParserFilter { private string _viewBaseType; private DirectiveType _directiveType = DirectiveType.Unknown; private bool _viewTypeControlAdded; public override void PreprocessDirective(string directiveName, IDictionary attributes) { base.PreprocessDirective(directiveName, attributes); string defaultBaseType = null; // If we recognize the directive, keep track of what it was. If we don't recognize // the directive then just stop. switch (directiveName) { case "page": _directiveType = DirectiveType.Page; defaultBaseType = typeof(JG.ParserFilter.CustomViewPage).FullName; // JG: inject custom types here break; case "control": _directiveType = DirectiveType.UserControl; defaultBaseType = typeof(JG.ParserFilter.CustomViewUserControl).FullName; // JG: inject custom types here break; case "master": _directiveType = DirectiveType.Master; defaultBaseType = typeof(System.Web.Mvc.ViewMasterPage).FullName; break; } if (_directiveType == DirectiveType.Unknown) { // If we're processing an unknown directive (e.g. a register directive), stop processing return; } // Look for an inherit attribute string inherits = (string)attributes["inherits"]; if (!String.IsNullOrEmpty(inherits)) { // If it doesn't look like a generic type, don't do anything special, // and let the parser do its normal processing if (IsGenericTypeString(inherits)) { // Remove the inherits attribute so the parser doesn't blow up attributes["inherits"] = defaultBaseType; // Remember the full type string so we can later give it to the ControlBuilder _viewBaseType = inherits; } } } private static bool IsGenericTypeString(string typeName) { // Detect C# and VB generic syntax // REVIEW: what about other languages? return typeName.IndexOfAny(new char[] { '<', '(' }) >= 0; } public override void ParseComplete(ControlBuilder rootBuilder) { base.ParseComplete(rootBuilder); // If it's our page ControlBuilder, give it the base type string CustomViewPageControlBuilder pageBuilder = rootBuilder as JG.ParserFilter.CustomViewPageControlBuilder; // JG: inject custom types here if (pageBuilder != null) { pageBuilder.PageBaseType = _viewBaseType; } CustomViewUserControlControlBuilder userControlBuilder = rootBuilder as JG.ParserFilter.CustomViewUserControlControlBuilder; // JG: inject custom types here if (userControlBuilder != null) { userControlBuilder.UserControlBaseType = _viewBaseType; } } public override bool ProcessCodeConstruct(CodeConstructType codeType, string code) { if (codeType == CodeConstructType.ExpressionSnippet && !_viewTypeControlAdded && _viewBaseType != null && _directiveType == DirectiveType.Master) { // If we're dealing with a master page that needs to have its base type set, do it here. // It's done by adding the ViewType control, which has a builder that sets the base type. // The code currently assumes that the file in question contains a code snippet, since // that's the item we key off of in order to know when to add the ViewType control. Hashtable attribs = new Hashtable(); attribs["typename"] = _viewBaseType; AddControl(typeof(System.Web.Mvc.ViewType), attribs); _viewTypeControlAdded = true; } return base.ProcessCodeConstruct(codeType, code); } // Everything else in this class is unrelated to our 'inherits' handling. // Since PageParserFilter blocks everything by default, we need to unblock it public override bool AllowCode { get { return true; } } public override bool AllowBaseType(Type baseType) { return true; } public override bool AllowControl(Type controlType, ControlBuilder builder) { return true; } public override bool AllowVirtualReference(string referenceVirtualPath, VirtualReferenceType referenceType) { return true; } public override bool AllowServerSideInclude(string includeVirtualPath) { return true; } public override int NumberOfControlsAllowed { get { return -1; } } public override int NumberOfDirectDependenciesAllowed { get { return -1; } } public override int TotalNumberOfDependenciesAllowed { get { return -1; } } private enum DirectiveType { Unknown, Page, UserControl, Master, } } }
Here's the page builder class (#2 above):
namespace JG.ParserFilter { using System.CodeDom; using System.Web.UI; internal sealed class CustomViewPageControlBuilder : FileLevelPageControlBuilder { public string PageBaseType { get; set; } public override void ProcessGeneratedCode( CodeCompileUnit codeCompileUnit, CodeTypeDeclaration baseType, CodeTypeDeclaration derivedType, CodeMemberMethod buildMethod, CodeMemberMethod dataBindingMethod) { // If we find got a base class string, use it if (PageBaseType != null) { derivedType.BaseTypes[0] = new CodeTypeReference(PageBaseType); } } } }
And here's the custom view page classes: the non-generic base (#3 above) and the generic derived class (#4 above):
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Diagnostics.CodeAnalysis; using System.Web.Mvc; namespace JG.ParserFilter { [FileLevelControlBuilder(typeof(JG.ParserFilter.CustomViewPageControlBuilder))] public class CustomViewPage : System.Web.Mvc.ViewPage //, IAttributeAccessor { public string MyNewProperty { get; set; } } [FileLevelControlBuilder(typeof(JG.ParserFilter.CustomViewPageControlBuilder))] public class CustomViewPage<TModel> : CustomViewPage where TModel : class { // code copied from source of ViewPage<T> private ViewDataDictionary<TModel> _viewData; public new AjaxHelper<TModel> Ajax { get; set; } public new HtmlHelper<TModel> Html { get; set; } public new TModel Model { get { return ViewData.Model; } } [SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public new ViewDataDictionary<TModel> ViewData { get { if (_viewData == null) { SetViewData(new ViewDataDictionary<TModel>()); } return _viewData; } set { SetViewData(value); } } public override void InitHelpers() { base.InitHelpers(); Ajax = new AjaxHelper<TModel>(ViewContext, this); Html = new HtmlHelper<TModel>(ViewContext, this); } protected override void SetViewData(ViewDataDictionary viewData) { _viewData = new ViewDataDictionary<TModel>(viewData); base.SetViewData(_viewData); } } }
And here are the corresponding classes for user controls (#5 above) :
namespace JG.ParserFilter { using System.Diagnostics.CodeAnalysis; using System.Web.Mvc; using System.Web.UI; [FileLevelControlBuilder(typeof(JG.ParserFilter.CustomViewUserControlControlBuilder))] public class CustomViewUserControl : System.Web.Mvc.ViewUserControl { public string MyNewProperty { get; set; } } public class CustomViewUserControl<TModel> : CustomViewUserControl where TModel : class { private AjaxHelper<TModel> _ajaxHelper; private HtmlHelper<TModel> _htmlHelper; private ViewDataDictionary<TModel> _viewData; public new AjaxHelper<TModel> Ajax { get { if (_ajaxHelper == null) { _ajaxHelper = new AjaxHelper<TModel>(ViewContext, this); } return _ajaxHelper; } } public new HtmlHelper<TModel> Html { get { if (_htmlHelper == null) { _htmlHelper = new HtmlHelper<TModel>(ViewContext, this); } return _htmlHelper; } } public new TModel Model { get { return ViewData.Model; } } [SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public new ViewDataDictionary<TModel> ViewData { get { EnsureViewData(); return _viewData; } set { SetViewData(value); } } protected override void SetViewData(ViewDataDictionary viewData) { _viewData = new ViewDataDictionary<TModel>(viewData); base.SetViewData(_viewData); } } } namespace JG.ParserFilter { using System.CodeDom; using System.Web.UI; internal sealed class CustomViewUserControlControlBuilder : FileLevelUserControlBuilder { internal string UserControlBaseType { get; set; } public override void ProcessGeneratedCode( CodeCompileUnit codeCompileUnit, CodeTypeDeclaration baseType, CodeTypeDeclaration derivedType, CodeMemberMethod buildMethod, CodeMemberMethod dataBindingMethod) { // If we find got a base class string, use it if (UserControlBaseType != null) { derivedType.BaseTypes[0] = new CodeTypeReference(UserControlBaseType); } } } }
Finally, here's a sample View which shows this in action:
<%@ Page Language="C#" MyNewProperty="From @Page directive!" Inherits="JG.ParserFilter.CustomViewPage<MvcApplication1.Models.FooModel>" %> <%=Model.SomeString %> <br /><br />this.MyNewPrroperty = <%=MyNewProperty%> </asp:Content>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With