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
85
differences b/w Ajax update panel and WARP
posted

Can anyone pls tell me what are the differences b/w Ajax update panel and  WARP ?

I am using mostly infragistics controls on my page. Which panel should i use ?

Parents
No Data
Reply
  • 24497
    posted

    Hi,

    If you use Infragistics.WebUI controls, then you may use either panel.

    If you use Infragistics.Web.UI, then you should use UpdatePanel only.

    To see differences, you may look at available properties and events of those controls. Major difference: UpdatePanel ignores (distroys) any previous response which come after new/another postback was triggered, but WARP processes responses from all requests.

    For example,
    Under UpdatePanel: if you modified value in a field1 and submitted, modified value in field2 and submitted again, then if 2nd request was triggered before 1st response was recieved (traffic or whatever), then field1 will not be updated.

    Under WARP both fields will be updated.

Children
No Data