为了账号安全,请及时绑定邮箱和手机立即绑定

点击生成的button按钮后为什么消失

点击生成的button按钮后为什么消失

守候你守候我 2018-12-07 06:36:41
最近在学习.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
提交
取消
意见反馈 帮助中心 APP下载
官方微信