我很擅长C#,但我还没有使用过ASP.NET。我想将一个参数传递给一个页面,页面将把它打印给用户。我在我的应用程序中执行以下操作以传递POST
类型的参数WebRequest request = WebRequest.Create("http://www.website.com/page.aspx");
request.Method = "POST";
string post_data = "id=123&base=data";
byte[] array = Encoding.UTF8.GetBytes(post_data);
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = array.Length;
现在我已经通过了参数,如何从我的页面访问它们? 另外,我的上述方法对于asp.net发布是否正确?我尝试使用PHP,并且工作正常。
答案 0 :(得分:2)
在aspx页面的代码隐藏中,只需编写
即可string id = Request.Form["id"].ToString();
如果是发布数据,
string id = Request.Querystring["id"].ToString();
如果数据在URL
中答案 1 :(得分:1)
发布数据:
var request = (HttpWebRequest) WebRequest.Create("http://www.website.com/page.aspx");
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
var postData = Encoding.UTF8.GetBytes("id=123&base=data");
request.ContentLength = postData.Length;
using (var requestStream = request.GetRequestStream())
{
requestStream.Write(postData, 0, postData.Length);
}
要阅读ASP.NET项目上发布的数据:
var id = Int32.Parse(Request.Form["id"]);
var data = Request.Form["base"];