在页面上有两个个按纽
其中一个在他的单击事件里,在页面上添加个文本框
当我点击另一个按扭的时候,我动态加上来的文本框就不见了
请指教哦!!!!
Button b = new Button();
b.Text = "Text";
b.Attributes["Style"] = string.Format("position:absolute;top:{0}px;left:{1}",100,100);
this.Page.FindControl("Form1").Controls.Add(b);