摘要:[asp.net] CS端變數控制 aspx端 TextBox
cs:
protected bool isEnable;
protected void Page_Load(object sender, EventArgs e)
{
isEnable = false;
// 要讓Text 在bind一次才有效
txt_test.DataBind();
}
aspx:
<asp:TextBox runat="server" Enabled='<%# isEnable %>' ID="txt_test"/>