在form load事件里将checkbox的visible属性设置为false
在button click 事件里将checkbox的visible属性设置为true
前台页面
后台
protected void button1_Click(object sender, EventArgs e)
{
this.ck1.Visible = true;
this.ck2.Visible = true;
}
1开始设置checkBox属性Visible为true
2再点Button进入button1_Click事件
if(this.checkBox1.Visible==false)
{
this.CheckBox1.Visible=true;
}