A few years ago I was working on a new .Net project and just heard Ajax, I thought it would be cool to use it, but there is no Ajax module on .Net then (.Net 1.0). I found a php module Sajax and read the client /server side code.
It's not that difficult. core function is just a few hundred lines to call XMLHttp. you write a javascript line call_server_function(function1, para1, para2), it generate a http request to server. server will then call a function.
So I modified the client side script ( might have copyright problem but I don't care), wrote my own server side class to handle ajax calls by reflection. It's working pretty good and the customer is still using it.
It's not that difficult. core function is just a few hundred lines to call XMLHttp. you write a javascript line call_server_function(function1, para1, para2), it generate a http request to server. server will then call a function.
So I modified the client side script ( might have copyright problem but I don't care), wrote my own server side class to handle ajax calls by reflection. It's working pretty good and the customer is still using it.