0

我需要在我的页面中阅读 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 "";
    }
}
4

1 回答 1

0

您是否尝试从 InputStream 中读取数据。一个这样的问题对此有更多详细信息。此外,您可以重置流,然后读取如下内容

request.InputStream.Position = 0;
// read the data
于 2013-05-13T04:46:17.410 回答