Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Properly implement a webpart with postback?

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.

like image 840
noocyte Avatar asked Feb 17 '09 09:02

noocyte


2 Answers

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.

like image 192
Lars Fastrup Avatar answered Nov 15 '22 15:11

Lars Fastrup


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/

like image 23
Flo Avatar answered Nov 15 '22 15:11

Flo