点击生成的button按钮后为什么消失
最近在学习.net,看到一个例子。
代码如下(cs的代码):
protected void Page_Load(object sender, EventArgs e) { PHID.Controls.Add(new LiteralControl("
")); if (CheckBox1.Checked) { PHID.Visible = true; CheckBox1.Text = "隐藏PlaceHolder"; } else { PHID.Visible = false; CheckBox1.Text = "显示PlaceHolder"; } } protected void AddButton_Click(object sender, EventArgs e) { Button button = new Button(); button.Text = "标准按钮"; button.ID = "btId"; PHID.Controls.Add(button); CheckBox cb = new CheckBox(); cb.Text = "复选按钮"; cb.ID = "cbId"; PHID.Controls.Add(cb); }
这个点击按钮运行AddButton_Click方法后会生成一个button和checkbox。当我点击生成的“标准按钮"button后为这两个button和checkbox就会消失。明明没有使用方法啊?????
守候你守候我
浏览 793回答 2
打开App,查看更多内容