最近在学习.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就会消失。明明没有使用方法啊?????
2 回答
- 2 回答
- 0 关注
- 792 浏览
添加回答
举报
0/150
提交
取消