Async postback Trigger in Ajax
What is asynchronous postback in Ajax?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanjeeb LenkaPosted Sep 11, 2013, 1:09 AM
synchronous postback: Complete page goes to server and back with the result.
asynchronous postback: Partial page/Part of the web goes to the server(concern part) and back with the result.
Example:
If you have 2 drop-downs in your page 1 for country and other for city, binding of the cities in the city drop-down totally depend on the country, instead of sending whole page to the server just send/update those drop-downs to server which are our concern(other page parts will be static so it will remains the same at client sideand no need to send them to server) that will increase performance of our web applications.
Pankaj KumarPosted Sep 11, 2013, 2:18 AM
Sanjeeb LenkaPosted Sep 11, 2013, 1:55 AM
Refer to this link
http://www.dotnetcurry.com/ShowArticle.aspx?ID=202
Mrunal BhandarkarPosted Sep 11, 2013, 1:50 AM
Thanks.
I want to use PostBackTrigger in AdRotator.
<Triggers>
SO I just want to clear how it works for images.
Suthish NairPosted Sep 11, 2013, 1:13 AM