I think you have little bit knowledge of Ajax.Net. So it’s time for you to look at the basic coding of it. For create the JavaScript calls, AJAX.NET uses an HttpHandler. Firstly you have to do is registering the handler in your web.config file, like I have done in the following coding:
Code:<configuration> <system.web> <httpHandlers> <add verb="POST,GET" path="ajaxwrapper/*.ashx" type="Ajax.PageHandlerFactory, Ajax" /> </httpHandlers> ... <system.web> </configuration>



Reply With Quote
Bookmarks