|
[System.CodeDom.Compiler.
GeneratedCodeAttribute("RazorGenerator",
"1.5.0.0"
)] [System.Web.WebPages.PageVirtualPathAttribute("~/Views/Shared/EditorTemplates/DateTime.cshtml")]
public
class
DateTime
: System.Web.Mvc.WebViewPage<DateTime?>
The code generated for the DateTime template will not compile.
The
reason is that the newly defined DateTime class takes precedence over the System.DateTime.
Solution:
The class that is inherited should be:
System.Web.Mvc.WebViewPage <System.DateTime>
NOT
System.Web.Mvc.WebViewPage<DateTime>
Hope you will
look into this.
|