c#:
protected void radio_accountType_SelectedIndexChanged(object sender,
EventArgs e)
{
switch (this.radio_accountType.SelectedValue)
{
case "1":
{
this.lbl_accountType.Text = "�û�";
this.combo_userGroup.Visible = true;
this.check_userList.Visible = true;
this.check_userGroupList.Visible = false;
break;
}
case "2":
{
this.lbl_accountType.Text = "�û���";
this.combo_userGroup.Visible = false;
this.check_userList.Visible = false;
this.check_userGroupList.Visible = true;
break;
}
}
}