我有一个源自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
提前致谢。