我调用以下代码:
protected void Page_Load(object sender, EventArgs e)
{
//Note that this is not my actual code
//this illustrates what happens
if(IsPostBack)
{
CheckBox1.Checked = true;
}
}
但结果,在回发后,复选框不遵守我将其设置为“真”的命令,并将代码中的某处重置为控件中选择的任何用户。
如何防止这种情况发生?