我需要在我的页面中阅读POST请求。我使用.net 2.0,更高版本是不可能的,我尝试使用AjaxPro构建页面。当我将JS中的请求发送到目的地时,我无法使用Request.Form
,Page.Request
或其他来读取请求。这是我的代码
public class Ajax : System.Web.UI.Page{
[AjaxMethod]
public string getString(){
//here i would like read POST request
return "";
}
}
答案 0 :(得分:0)
您是否尝试从InputStream中读取数据?其中一个question有更多细节。此外,您可以重置流,然后读取如下内容
request.InputStream.Position = 0;
// read the data