P Prashanth Rao May 15, 2007 #1 Can anyone describe me how to use the Ajax in the .Net Appplications with sample example...
A Alberto Poblacion May 15, 2007 #2 Prashanth Rao said: Can anyone describe me how to use the Ajax in the .Net Appplications with sample example... Click to expand... You can go to http://www.asp.net/learn/videos/default.aspx?tabid=63#ajax to find some videos that provide step by step demonstrations. The sample code can also be downloaded from the same site.
Prashanth Rao said: Can anyone describe me how to use the Ajax in the .Net Appplications with sample example... Click to expand... You can go to http://www.asp.net/learn/videos/default.aspx?tabid=63#ajax to find some videos that provide step by step demonstrations. The sample code can also be downloaded from the same site.
M MS C# News May 15, 2007 #3 ??var oHttpReq = new ActiveXObject("MSXML2.XMLHTTP"); ??var oDoc = new ActiveXObject("MSXML2.DOMDocument"); ??oHttpReq.open("POST","pages.aspx",false); ? ??oHttpReq.send(""); ? ??var result = oHttpReq.responseText; ? ??var td=link.parentNode; td.innerHTML=result;
??var oHttpReq = new ActiveXObject("MSXML2.XMLHTTP"); ??var oDoc = new ActiveXObject("MSXML2.DOMDocument"); ??oHttpReq.open("POST","pages.aspx",false); ? ??oHttpReq.send(""); ? ??var result = oHttpReq.responseText; ? ??var td=link.parentNode; td.innerHTML=result;
I Ignacio Machin \( .NET/ C# MVP \) May 15, 2007 #4 Hi, Prashanth Rao said: Can anyone describe me how to use the Ajax in the .Net Appplications with sample example... Click to expand... Take a look at Atlas , it's MS's implementation of the Ajax concept: http://ajax.asp.net/Default.aspx
Hi, Prashanth Rao said: Can anyone describe me how to use the Ajax in the .Net Appplications with sample example... Click to expand... Take a look at Atlas , it's MS's implementation of the Ajax concept: http://ajax.asp.net/Default.aspx