Tag: 网络控制

基类包括字段但类型与控件类型不兼容

The base class includes the field ‘lbl’, but its type (web.App_Code.CustomLabelControl) is not compatible with the type of control (web.App_Code.CustomLabelControl). 我以同样的方式做了很多自定义控件,但地狱这个错误让我疯了。 我有一个Web应用程序项目,在App_Code目录中具有以下类,在web.config中为类中的控件提供了tagprefix引用。 现在我该怎么做? Web.Config中 … 标记 类文件 namespace web.App_Code { public class CustomLabelControl : Control, IPostBackEventHandler, IPostBackDataHandler { private string _onClickText; public CustomLabelControl() { } public string OnClickText { get { return _onClickText; } set […]