我有一个从 HtmlImage 控件派生的自定义控件,我无法显示在工具箱上,它显示“'...\bin\Debug\ImageCustomControl.dll' 中没有可以放置在工具箱上的组件。”。
这是控件的代码:
namespace ImageCustomControl
{
public class ImageHtmlControl : HtmlImage
{
public override void RenderControl(HtmlTextWriter writer)
{
this.Src = "https://somedomain.com" + this.Src;
base.RenderControl(writer);
}
}
}
这是 2003 年的一个帖子,说它不可能,但只是想知道它是否已经改变:http: //www.microsoft.com/mspress/books/sampchap/5728d.aspx
提前致谢。