Right, i've got the xmlhttprequest working and there is a response from the server.
My only problem is that i dont know how retrieve the data sent.
I try to access this data sent in javascript...
var data = "dat=5";
xmlhttp.send(data);
... using this C# code.
Request.QueryString["dat"];
But the above code returns nothing. Why?
My only problem is that i dont know how retrieve the data sent.
I try to access this data sent in javascript...
var data = "dat=5";
xmlhttp.send(data);
... using this C# code.
Request.QueryString["dat"];
But the above code returns nothing. Why?