我擅长 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 试过了,效果很好。