所以我还有另一个面条(对我而言)。
我正在尝试在CMS中创建自己的自定义控件我只有部分源代码(即供应商提供给我的样本)。基本上我创建了一个名为DataDefinitionContent
的类,它扩展了ControlBase
。现在,从我从元数据中获取的内容,ControlBase
扩展了UserControl
,所以我原以为这会在没有戏剧性的情况下运行。任何人都可以解释为什么这可能不适合我吗?
我的班级:
public partial class DataDefinitionContent : ControlBase, ICustomControl<DataDefinition>
{
... Stuff
}
ControlBase:
using System;
using System.Web.UI;
namespace CMS.Web
{
public class ControlBase : UserControl
{
... Stuff
}
}
我的ascx文件:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="DataDefinitionContent.ascx.cs"
Inherits="CMS.Admin.WebUI.CustomControls.DataDefinitionContent, CoA.Admin.WebUI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" %>
我得到的错误:
分析器错误消息: “CMS.Admin.WebUI.CustomControls.DataDefinitionContent, CoA.Admin.WebUI,版本= 1.0.0.0, Culture = neutral,PublicKeyToken = null' 这里不允许,因为它确实如此 不扩展课程 'System.Web.UI.UserControl'。
第1行: &lt;%@ Control Language =“C#” AutoEventWireup =“true”CodeBehind =“DataDefinitionContent.ascx.cs”
答案 0 :(得分:11)
尝试将您的部分课程放入
namespace CMS.Web
答案 1 :(得分:5)
当扩展UserControl类的类的名称不是ASP包含中使用的名称时,我收到此错误。我对类名进行了更改并重新部署了解决方案。问题得到解决。