Ajax

software needed to create ajax applications

17 November 2007 |

well there's a lot of approaches to create ajax applications but i like .net and c#, I use asp.net controls to render the initial page and then do all the manipulation using manually coded javascript. and for the server calls i use normal asmx's and a script manager to generate a javascript that i can use to send and receive data so this way the tools i need are simple Visual Studio 2005 : which i use to create asp.net pages and create my web services and handle all server code and database logic Aptana : an eclipse...

ajax net cancel a request

12 November 2007 |

well this is one of my old blog posts i'll be resposting them by time ammong new ones here we go this is very important if i have a request that i have issued using asp.net ajax client library this is how to cancel it 1: serviceHandler = new ServiceName().methodName(param1, param2, completeHendler ,errorHandler ); 2: // just keep the serviceHandler variable in a handy scope 3: // and when the user doesn't want this request anymore 4: if (serviceHandler!=null) 5: serviceHandler.get_executor().abort();