利用CSS在同一頁面中,選擇不同按鈕,顯示不同模塊
//其中RBform和RBitem為RadioButton控件, tr1,tr2,tr3分別為要顯示的模塊(行,表格等)ID。
if (this.RBform.Checked)
{
this.tr1.Style.Add("display", "block"); //顯示此模塊
this.tr2.Style.Add("display", "none"); //隱藏此模塊
this.tr3.Style.Add("display", "none");
}
else if (this.RBitem.Checked)
{
this.tr1.Style.Add("display", "none");
this.tr2.Style.Add("display", "block");
this.tr3.Style.Add("display","none");
}
else
{
this.tr1.Style.Add("display", "none");
this.tr2.Style.Add("display", "none");
this.tr3.Style.Add("display", "block");
}