![]() |
#2
bygg2009-09-15 13:22
|
protected void Page_Load(object sender, EventArgs e)
{
HtmlForm fc =(HtmlForm)Page.Form.FindControl("form1");
HtmlButton hb = new HtmlButton();
hb.Attributes.Add("text","hu");
fc.Controls.Add(hb);
Page.Controls.Add(fc);
}