Reputation: 3974
I am a bit confused here with the way in which asynchronous programming can be done. As I think, I can always use AJAX for the same.
Upvotes: 0
Views: 247
Reputation: 1039398
I am a bit confused here with the way in which asynchronous programming can be done.
I would recommend you the following article on MSDN if you want to do real asynchronous programming on the server. AJAX concerns only the client side part (javascript). You could still have perfectly synchronous server code but by using AJAX you are faking from the client perspective an asynchronous call so that his browser stays responsive and is able to perform other tasks on the page during the AJAX call.
Upvotes: 1
Reputation: 52241
Yes, AJAX is used most of time and it will handle Asynchronous request, but you can use jquery as well for your Asynchrous operation as well.
Upvotes: 0