Tag Archives: Ajax
Ajax POST method, using xmlhttprequest
To post data using ajax xmlhttp protocol. var request; function createAjax(url,callbackfunction,parameters,method) { try { request = new ActiveXObject(“Microsoft.XMLHTTP”); } catch(e1) { try { request = new ActiveXObject(“Msxml2.XMLHTTP”); } catch(e2) {… Read more
Ajax with .NET using XMLHttpRequest Object
How to use Ajax with .Net using basic JavaScript method (xmlhttprequest object) Setup a client side method(Javascript) that will initiate the process and a method that will handle the result… Read more
ASP.NET Ajax Javascript Problem
Last week I was working on a control, where i was required to load a control using Ajax ModalExtendender Pop up control and then there are various links on the… Read more
Using HttpModule to Handle Ajax Calls
Download Example Introduction This is an article about how we can use httpmodule to handle an Ajax request. I have added a new function to directly load the HTML container… Read more