This is my code on html page:
$.post("a.asp", {name:txt} ,function(result){
$("span").html(result);
});
I want to access value of name variable on a.asp page. I have tried so many things about Request.QueryString but it didn't work. Can any one help me?