C#使用GET、POST请求获取结果
程序员文章站
2022-03-14 18:06:38
c#使用get、post请求获取结果,这里以一个简单的用户登陆为例。
1、 使用get请求获取结果
1.1 创建loginhandler.aspx处理页面
p...
c#使用get、post请求获取结果,这里以一个简单的用户登陆为例。
1、 使用get请求获取结果
1.1 创建loginhandler.aspx处理页面
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); }
1.2 编写get请求与获取结果方法
/// <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; }
1.3 调用测试
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(); }
2、 使用post请求获取结果
2.1 创建loginhandler.aspx处理页面
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); }
2.2 编写post请求与获取结果方法
/// <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; }
2.3 调用测试
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(); }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: C#发送邮箱实现代码
下一篇: redis中热key问题该如何解决
推荐阅读
-
无论GET还是POST都可以用通用方式获取请求参数
-
PHP中使用cURL实现Get和Post请求的方法
-
Python 使用requests模块发送GET和POST请求的实现代码
-
Python 使用requests模块发送GET和POST请求的实现代码
-
PHP使用stream_context_create()模拟POST/GET请求的方法
-
Android HttpClient GET或者POST请求基本使用方法
-
postman的安装与使用方法(模拟Get和Post请求)
-
Android HttpClient GET或者POST请求基本使用方法
-
C#模拟http 发送post或get请求的简单实例
-
android使用url connection示例(get和post数据获取返回数据)