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 ?
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.