jquery POST data in aspx page
问题 I post data to my aspx file qith the following code: $.ajax({ type: 'POST', url: "Ajax_Text.aspx?rand=" + myRand + "&id=" + $(".articleID").attr('title') + "&text=" + $("#text").val(), cache: false, beforeSend: function () { }, success: function (data) { alert(data); } }); Why i catch the text value by using the following code string text = ""; if (!String.IsNullOrEmpty(Request.QueryString["text"])) { text = Request.QueryString["text"].ToString(); } else { text = ""; } and not this code: