Click here to Skip to main content
15,886,873 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how the ajax page process in asp.net?


or is similer to normal page.

[Moved from answer]
im asking the ajax page life cycle. i have the idea its goes like portion of the page is going back ,at the iis how the iis know it was the ajax based request, and it that goes to all the httpmodules,and finally will go the httphander.
Posted
Updated 25-Jun-12 10:32am
v2

The key of Ajax is XmlHTTPRequest object, which can help you communicate with the server and recieve the text response. You can use JavaScript DOM to replace the related element in the page by the new text returned from server.

Look at this article on CP to read more about it.

An Introduction to AJAX Techniques and Frameworks for ASP.NET[^]
 
Share this answer
 
Comments
Prasad_Kulkarni 13-Jun-12 8:24am    
+5!
Manas Bhardwaj 13-Jun-12 9:10am    
thx :)
 
Share this answer
 
Comments
Prasad_Kulkarni 13-Jun-12 8:24am    
+5!
Manas Bhardwaj 13-Jun-12 9:11am    
+5 for links!
Any browser to support Asynchronus processing uses XMLHttp object, if XMLHttp is not supported, then AJAX will not work.
This is available from IE4 and higher versions
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900