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...
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 setoEvent.fullPostBack=true;for a particular postback (id-3rd param can be used to check for trigger).