用户控件=============================================================
ecweb_regcontent.ascx
<asp:textbox id="account" runat="server" Width="288px"></asp:textbox>
ecweb_regcontent.ascx.cs
public string ACCOUNT
{
    get
    {
        return account.Text.ToString();
    }
    set
    {
        account.Text = value;
    }
}
页面=============================================================
reg.aspx  //引用用户控件
<%@ Register Src="../UserControls/ecweb_regcontent.ascx" TagName="ecweb_regcontent"
    TagPrefix="uc5" %>
reg.aspx.csprotected void Page_Load(object sender, EventArgs e)
{
    Ecweb_regcontent1.ACCOUNT = "测试";
}protected void Button1_Click(object sender, EventArgs e)//一个单击按钮事件
{
    Response.Write(Ecweb_regcontent1.ACCOUNT);
}问题==================================================================‘
a:Ecweb_regcontent1.ACCOUNT = "测试";
b:Response.Write(Ecweb_regcontent1.ACCOUNT);无论我在account.text控件中输入什么值,b都只输出“测试”
如果我把这a屏蔽掉然后b就能获取到我输入的值了请问该怎么解决呢(在a不被屏蔽的情况下,我在account.text控件中输入什么b就输出什么)