如何在首次回发后更新母版页上的TextBox?

时间:2014-07-23 21:55:26

标签: asp.net master-pages postback pageload

大家好,所以我遇到了一些问题,并且知道有人可以帮助我,因为我无法理解这一点。

我有一个母版页,其中包含一个div,其中包含客户的文本框以及客户在内容页面中选择服务时的总时间。

我遇到的问题是,当选择服务时,第一个回发不会在母版页中的div上显示更新的总计。在第二次回发时,将显示第一个选择的结果。

我知道这是因为在页面加载之后才会处理回发。但我不知道如何解决这个问题。我试图调用母版页的方法来处理从内容页面的init方法更新总计的方法,但是当我这样做时,母版页的文本框为空。

以下是母版页背后的代码:

namespace Teres.App
{
    public partial class App : System.Web.UI.MasterPage
    {
        Teres.Controllers.Math M;



        protected void Page_Load(object sender, EventArgs e)
        {


            TextBox1.Text = "customized for: " + HttpContext.Current.Session["UserName"].ToString();
            TextBox2.Text = "member: " + HttpContext.Current.Session["IsMember"].ToString();
            TextBox3.Text = "membership info: " + HttpContext.Current.Session["MoreInfo"].ToString();

            //need to create dynamic textboxes for service events
            //will call method from Tab class
            if (IsPostBack)
            {
                TabMath();
            }


        }

        public void UpdateBar (string service)
        {
            //TextBox TextBox = new TextBox();


        }

        public void TabMath ()
        {
            M = new Teres.Controllers.Math();
            string dollarTotal = Convert.ToString(M.GetDollarTotal());
            TextBox29.Text = "total: $" + dollarTotal;

            string minuteTotal = Convert.ToString(M.GetMinuteTotal());
            TextBox30.Text = "time: " + minuteTotal + " minutes";
        }


    }
}

这是我的内容页面的代码隐藏

namespace Teres.App
{
    public partial class Services : System.Web.UI.Page
    {
        Teres.Controllers.Services S;
        Teres.Controllers.Math M;

        protected void Page_PreInit(object sender, EventArgs e)
        {


        }

        protected void Page_Init(object sender, EventArgs e)
        {


        }

        protected void Page_Load(object sender, EventArgs e)
        {




        }


        protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
        {
            S = new Teres.Controllers.Services();
            M = new Teres.Controllers.Math();

            if(CheckBox1.Checked)
            {
                TextBox1.Text = S.GetHandDescription("manicure");
                TextBox2.Text = Convert.ToString(S.GetHandTimes("manicure"));
                TextBox3.Text = Convert.ToString(S.GetHandPrices("manicure"));

                M.UpdateMinuteTotal(S.GetHandTimes("manicure"));
                M.UpdateDollarTotal(S.GetHandPrices("manicure"));

                //Teres.App.App.UpdateBar("manicure");
            }

            else
            {
                TextBox1.Text = "";
                TextBox2.Text = "";
                TextBox3.Text = "";

                M.SubtractMinuteTotal(S.GetHandTimes("manicure"));
                M.SubtractDollarTotal(S.GetHandPrices("manicure"));

                //Teres.App.App.UpdateBar("manicure");
            }
        }

如何在选择后立即更新textbox29和textbox30,以便在主页面上立即显示回发?

谢谢!

1 个答案:

答案 0 :(得分:0)

好的,所以我刚才想出来,并认为我会发布像我这样的新手想要解决这个问题。

我了解到prerender阶段允许您在呈现之前更新页面上的控件,但此阶段是在处理回发之后。

 protected void Page_PreRender(object sender, EventArgs e)
        {
            if (IsPostBack)
            {
                TabMath();
            }
        }

这允许总计在每次回发后显示正确的版本。

希望它能帮助别人。