Wednesday, September 06, 2006

AJAX code in Web.Config

This small piece of code adds a handler to the Web.Config file for AJAX in Asp.Net web applications.  This piece of code does all the work.

<httpHandlers>  <!-- Register the ajax handler -->
<add verb="POST,GET" path="ajax/*.ashx" type="Ajax.PageHandlerFactory, Ajax"/>
</httpHandlers>

Tags: ajax, web.config, add code

Can't find what you're looking for? Try Google Search!
Google
 
Web eshwar123.blogspot.com

Comments on "AJAX code in Web.Config"