为HtmlGenericControl写一个扩展方法,可以修改它的显示内容,text
this.Buttons.Edit.SetBtnText("答题");
public static class HtmlGenericControlExtend
{
public static HtmlGenericControl SetBtnText(this HtmlGenericControl hgcParam, string btnText)
{
HtmlGenericControl hgc = hgcParam;
foreach (Control i in hgc.Controls)
{
//foreach (Control j in i.Controls)
//{
if (i is Label)
{
Label t = (Label)i;
t.Text = btnText;
}
//}
}
return hgc;
}
}