Hi,
I am developing a Asp.NET application which makes use of AJAX for some of the database updation operations. In one case I am posting the data I want to process on the server side using the send method of XmlHttpRequest object. How can I retrieve the data on server side? Below is a sample code I am using
request.open("P OST", "Default.aspx") ;
request.send("n ame=" + encodeURI(input Value);
How can I retrieve the inputValue on server side. Please help.
Hemangajit
I am developing a Asp.NET application which makes use of AJAX for some of the database updation operations. In one case I am posting the data I want to process on the server side using the send method of XmlHttpRequest object. How can I retrieve the data on server side? Below is a sample code I am using
request.open("P OST", "Default.aspx") ;
request.send("n ame=" + encodeURI(input Value);
How can I retrieve the inputValue on server side. Please help.
Hemangajit
Comment