Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
165
force postback from WARP
posted

 

I have mutliple WARPs running on a page which are all working fine, but one thing i need to do a complete post back to update, which is a CAPTCHA image. I havent been able to force a postback of the entire page and im guessing its because of the WARPs. Can anyone tell me how i could trigger a full page postback, basically a refresh of the page because i do not want to lose any of the entered details on the form...

 

thanks in advance...

  • 24497
    posted

    Hi,

    If you need to exclude "submit" element/control located in WARP from async postback, then you may do 1 of the following:

    1. Use TriggerPostBackIDs at design or run time

    2. Use AddTriggerPostBack at run time

    3. Process ClientSideEvents.RefreshRequest and set
    oEvent.fullPostBack=true;
    for a particular postback (id-3rd param can be used to check for trigger).