C#使用GET、POST请求获取结果

C#使用GET、POST请求获取结果,这里以一个简单的用户登陆为例。

1、 使用GET请求获取结果

1.1 创建LoginHandler.aspx处理页面

<span style="font-size:18px;">protected void Page_Load(object sender, EventArgs e)
{
    string result = "";
    string userName = Request.QueryString["UserName"];
    string password = Request.QueryString["Password"];

    if (userName == "admin" && password == "123")
    {
        result = "登陆成功";
    }
    else
    {
        result = "登陆失败";
    }
    Response.Write(result);
}</span>

1.2 编写GET请求与获取结果方法

<span style="font-size:18px;">/// <summary>
/// GET请求与获取结果
/// </summary>
public static string HttpGet(string Url, string postDataStr)
{
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url + (postDataStr == "" ? "" : "?") + postDataStr);
    request.Method = "GET";
    request.ContentType = "text/html;charset=UTF-8";

    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    Stream myResponseStream = response.GetResponseStream();
    StreamReader myStreamReader = new StreamReader(myResponseStream, Encoding.UTF8);
    string retString = myStreamReader.ReadToEnd();
    myStreamReader.Close();
    myResponseStream.Close();

    return retString;
}</span>

1.3 调用测试

<span style="font-size:18px;">static void Main(string[] args)
{
    string url = "http://www.mystudy.cn/LoginHandler.aspx";
    string data = "UserName=admin&Password=123";
    string result = HttpGet(url, data);
    Console.WriteLine(result);
    Console.ReadLine();
}</span>

2、 使用POST请求获取结果

2.1 创建LoginHandler.aspx处理页面

<span style="font-size:18px;">protected void Page_Load(object sender, EventArgs e)
{
    string result = "";
    string userName = Request.Form["UserName"];
    string password = Request.Form["Password"];

    if (userName == "admin" && password == "123")
    {
        result = "登陆成功";
    }
    else
    {
        result = "登陆失败";
    }
    Response.Write(result);
}</span>

2.2 编写POST请求与获取结果方法

<span style="font-size:18px;">/// <summary>
/// POST请求与获取结果
/// </summary>
public static string HttpPost(string Url, string postDataStr)
{
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url);
    request.Method = "POST";
    request.ContentType = "application/x-www-form-urlencoded";
    request.ContentLength = postDataStr.Length;
    StreamWriter writer = new StreamWriter(request.GetRequestStream(),Encoding.ASCII);
    writer.Write(postDataStr);
    writer.Flush();
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    string encoding = response.ContentEncoding;
    if (encoding == null || encoding.Length < 1) {
        encoding = "UTF-8"; //默认编码
    }
    StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding(encoding));
    string retString = reader.ReadToEnd();
    return retString;
}</span>

2.3 调用测试

<span style="font-size:18px;">static void Main(string[] args)
{
    string url = "http://www.mystudy.cn/LoginHandler.aspx";
    string data = "UserName=admin&Password=123";
    string result = HttpPost(url, data);
    Console.WriteLine(result);
    Console.ReadLine();
}</span>
<span style="font-family: 'Microsoft YaHei'; line-height: 30px; text-align: right;font-size:18px; color: rgb(0, 0, 0); background-color: rgb(240, 240, 240);">
</span>
<span style="font-family: 'Microsoft YaHei'; line-height: 30px; text-align: right;font-size:18px; color: rgb(0, 0, 0); background-color: rgb(240, 240, 240);">
</span>
<span style="font-family: 'Microsoft YaHei'; line-height: 30px; text-align: right;font-size:18px; color: rgb(0, 0, 0); background-color: rgb(240, 240, 240);">转自</span><a target=_blank href="http://blog.csdn.net/pan_junbiao/article/details/9155497" target="_blank" style="font-family: 'Microsoft YaHei'; line-height: 30px; text-align: right;font-size:18px; background-color: rgb(240, 240, 240); text-decoration: none;">pan_junbiao的专栏</a>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值