【发布时间】:2009-05-13 21:00:33
【问题描述】:
我正在尝试实现一个强类型母版页,并以此页面为例:
How to create a strongly typed master page using a base controller in ASP.NET MVC
我的母版页中有以下声明:
<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage<InsTech.ForeSight.Web.Mvc.ModelBase>" %>
当我尝试跑步时,我得到:
解析器错误消息:无法加载类型'System.Web.Mvc.ViewMasterPage<InsTech.ForeSight.Web.Mvc.ModelBase>'
我不太确定为什么它找不到类型。当我使用 ViewMasterPage 类时,一切正常,但当我尝试使用通用版本时,它会爆炸。
任何建议
【问题讨论】: