Properly implement a webpart with postback?

11,885

Solution 1

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.

Solution 2

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/

Share:
11,885
FNMT8L9IN82
Author by

FNMT8L9IN82

.Net Developer since 2004. Got a Master of IT from Swinburne Uni, Melbourne AU.

Updated on June 04, 2022

Comments

  • FNMT8L9IN82
    FNMT8L9IN82 almost 2 years

    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.

  • FNMT8L9IN82
    FNMT8L9IN82 about 15 years
    Yeah, that couldv'e been an option, unfortunately the value in question here is dynamic; ie. the textbox may or may not be present in a webpart... ;)
  • FNMT8L9IN82
    FNMT8L9IN82 about 15 years
    All my controls are added during CreateChildControls(). And I've tried to call EnsureChildControls() in the OnLoad override, no luck.
  • FNMT8L9IN82
    FNMT8L9IN82 about 15 years
    Also; the literal is added via code (as are all controls in the webpart).