for (int i = 0; i < 256; i++)
{
HtmlGenericControl temp = new HtmlGenericControl("li");
temp.InnerHtml = i.ToString();
this.pSign.Controls.Add(temp);
temp.Dispose();
}
{
HtmlGenericControl temp = new HtmlGenericControl("li");
temp.InnerHtml = i.ToString();
this.pSign.Controls.Add(temp);
temp.Dispose();
}
其中pSign用asp:PlaceHolder即可。
看看,在Asp.net下完全可以显示出256行数字,在Asp.net2.0下竟然是一个字都没有了!html源码里只有256个<li></li>
在2.0下将temp.Dispose()去掉才行!