Properly implement a webpart with postback?

2019-04-28 22:14发布

What I'm trying to do is to create a webpart that has a textbox where you can set the value of a literal (h2) on the webpart and a "save" button that posts back and then sets the literal accordingly. This works with one huge caveat; when the page loads after the postback the literal has not been changed. However if I log what is actually set in the literal it has the new value. Also if I reload the page again (F5) it displays correctly.

At first I figured it must be ViewState, so I disabled it for all controls. I verified that it is not being saved in the ViewState (decoded it). So ViewState is not saving the old value.

I'm using "CreateChildControls" to add my controls to the webpart. and the postback is handled by a simple event handler.

Any ideas?

For the record, I'm using MOSS 2007.

4条回答
一夜七次
2楼-- · 2019-04-28 22:52

Sounds like an ASP.NET event timing problem. Try calling EnsureChildControls() in the page load event. This ensures that your CreateChildControls() method is called and your controls are added to the page before the post back events are handled. If your controls are first added at the PreRender or Render stage it will be too late for them to pick up the post back data. You will then not see the change before the next page load.

查看更多
我欲成王,谁敢阻挡
3楼-- · 2019-04-28 22:53

Here is a suggestion. It works for me anyway.

using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;

namespace Skaar.UI
{
    public class PostBackWebPart:WebPart
    {
        private Literal literal;
        private TextBox textBox;
        protected override void OnInit(System.EventArgs e)
        {
            base.OnInit(e);
            literal=new Literal();
            literal.Mode = LiteralMode.PassThrough;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
            Controls.Add(literal);
            textBox=new TextBox();
            textBox.AutoPostBack = true;
            Controls.Add(textBox);
            textBox.TextChanged += textBox_TextChanged;                                                                                                                                                                                                                                                                                                                                      
        }

        void textBox_TextChanged(object sender, System.EventArgs e)
        {
            literal.Text = string.Format("<h1>{0}</h1>", textBox.Text);
        }
    }
}
查看更多
小情绪 Triste *
4楼-- · 2019-04-28 22:55

Perhaps this blog post might help you to understand the life cycle of a webpart better and to solve your problem. http://platinumdogs.wordpress.com/2008/10/14/sharepoint-webpart-lifecycle-events/

查看更多
爱情/是我丢掉的垃圾
5楼-- · 2019-04-28 23:17

You could always use an AJAX update panel, drop your literal control inside that and call an UDP.Update on the update panel. Also with your initial example check you have runat="server" on your literal control. You should be able to add a change to the Page_Load event and this should appear on the webpart.

查看更多
登录 后发表回答