我需要在我的页面中阅读 POST 请求。我使用 .net 2.0,更高版本是不可能的,我尝试使用 AjaxPro 构建页面。Request.Form
当我在 JS 中向我的目的地发送请求时,我无法使用Page.Request
或其他方式读取请求。这是我的代码
public class Ajax : System.Web.UI.Page{
[AjaxMethod]
public string getString(){
//here i would like read POST request
return "";
}
}