通过HttpWebRequest获取网页内容并保持session,最主要的就是存储cookie。这里使用了一个静态变量m_Cookie用来存储cookie的内容。第二次请求网页的时候把cookie传送过去,这样就可以保持session。

  1. public partial class RequestPage : System.Web.UI.Page
  2. {
  3. private static CookieContainer m_Cookie = new CookieContainer();
  4. private string m_Url = "http://localhost/HttpRequestTest/SessionPage.aspx";
  5. protected void Page_Load(object sender, EventArgs e)
  6. {
  7. string content = GetPageContent();
  8. //string content = GetPageContent(m_Url);
  9. Label1.Text = content;
  10. }
  11. /// <summary>
  12. /// 获取页面内容,保存CookieHeader
  13. /// </summary>
  14. /// <returns></returns>
  15. private string GetPageContent()
  16. {
  17. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(m_Url);
  18. request.CookieContainer = m_Cookie;
  19. HttpWebResponse response = (HttpWebResponse)request.GetResponse();
  20. string cookieheader = request.CookieContainer.GetCookieHeader(new Uri(m_Url));
  21. m_Cookie.SetCookies(new Uri(m_Url), cookieheader);
  22. Stream stream = response.GetResponseStream();
  23. StreamReader reader = new StreamReader(stream);
  24. string result = reader.ReadToEnd();
  25. stream.Close();
  26. reader.Close();
  27. response.Close();
  28. return result;
  29. }
  30. /// <summary>
  31. /// 获取页面内容,存储CookieContainer
  32. /// </summary>
  33. /// <param name="url">被请求页面的url</param>
  34. /// <returns>返回页面内容</returns>
  35. public string GetPageContent(string url)
  36. {
  37. StringBuilder result = new StringBuilder("");
  38. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); ;
  39. HttpWebResponse reponse = null;
  40. try
  41. {
  42. request.CookieContainer = m_Cookie;
  43. reponse = (HttpWebResponse)request.GetResponse();
  44. m_Cookie = request.CookieContainer;
  45. Stream rspStream = reponse.GetResponseStream();
  46. StreamReader sr = new StreamReader(rspStream, System.Text.Encoding.Default);
  47. //获取数据
  48. Char[] read = new Char[256];
  49. int count = sr.Read(read, 0, 256);
  50. while (count > 0)
  51. {
  52. result.Append(read, 0, count);
  53. count = sr.Read(read, 0, 256);
  54. }
  55. }
  56. catch (Exception e)
  57. {
  58. result.Append(e.Message);
  59. }
  60. finally
  61. {
  62. if (reponse != null)
  63. {
  64. reponse.Close();
  65. }
  66. }
  67. return result.ToString();
  68. }
  69. }

【转】HttpWebRequest 保持session的更多相关文章

  1. HttpWebRequest 保存Cookies,模拟Session登录

    前面使用HttpWebRequest 对象可以抓取网页中一些资料,不过有些页面可以直接打开,而有些页面必登录之后才能打开,也就是在登录后保存登录信息在Session,这样就可以访问有权限的页面了.下面 ...

  2. HttpWebRequest调用WebService后台需要Session信息问题的解决办法

    今天在用HttpWebRequest调用后台ASP.NET 的WebService方法时遇到了一个问题,后台的WebService方法里使用到了Session对象中的用户信息,而Session对象中的 ...

  3. web也是区分前端与后端的,session\cookie辨析

    <1>Ajax交互方式 Ext.Ajax.request( { //被用来向服务器发起请求默认的url url : "", //请求时发送后台的参数,既可以是Json对 ...

  4. 通过HttpWebRequest请求与HttpWebResponse响应方式发布接口与访问接口

    一.API接口的编码 1.首页的页面代码: protected void Page_Load(object sender, EventArgs e) { /* * 请求路径:http://xxxx/i ...

  5. C#的提交表单方式主要有两种WebClient与HttpWebRequest

    根据黄聪:C#模拟网站页面POST数据提交表单(转) using System; using System.Collections.Generic; using System.IO; using Sy ...

  6. C#获得和发送网站Session

    request = (HttpWebRequest)WebRequest.Create(url);                                         if (Const. ...

  7. 利用HttpWebRequest和HttpWebResponse获取Cookie

    之前看过某个同学的一篇有关与使用JSoup解析学校图书馆的文章,仔细一看,发现竟然是同校!!既然对方用的是java,那么我也就来个C#好了,虽然我的入门语言是java. C#没有JSoup这样方便的东 ...

  8. C#模拟POST提交表单(二)--HttpWebRequest以及HttpWebResponse

    上次介绍了用WebClient的方式提交POST请求,这次,我继续来介绍用其它一种方式 HttpWebRequest以及HttpWebResponse 自认为与上次介绍的WebClient最大的不同之 ...

  9. WebApi 能支持Session

    由于项目实际需要,我希望让WebApi服务也能支持Session,所以便查找资料按照网上的方法开始着手实验. 然后就有了以下的代码,主要是说让WebApi支持Session,要重写Global.asa ...

随机推荐

  1. C++: C++函数声明的时候后面加const

    C++: C++函数声明的时候后面加const 转自:http://blog.csdn.net/zhangss415/article/details/7998123 非静态成员函数后面加const(加 ...

  2. 微信开发之c#下缓存jssdk的access_token

    因为access_token的寿命只有7200秒,每日获取access_token存在上限,所以在获取access_token后,需要将其缓存起来. 首先建立一个模型 public class Acc ...

  3. cesium编程入门(七)3D Tiles,模型旋转

    cesium编程入门(七)3D Tiles,模型旋转 上一节介绍了3D Tiles模型的位置移动,和贴地的操作,这一节来聊一聊模型的旋转, 参考<WebGl编程指南>的第四章 假设在X轴和 ...

  4. solidity 合约间调用以及参数传递

    在 以太坊中合约间是可以相互调用,并且正常进行参数传递以及返回值处理. contract1.sol pragma solidity ^0.4.0; contract Test1 { uint256 p ...

  5. [国家集训队] tree Ⅱ

    bzoj2631(权限题...):链接 落咕:链接 考察的是LCT维护链上信息. 但是这个题不一样的是又有加法又有乘法...(有木有想到落咕的模板--线段树2qwq) 因为乘法的运算优先度比加法高,所 ...

  6. 二. linux基础命令

    linux的基本命令一般有100多个,多练就可以了:        如果登陆用户是root,那么是#:如果是其他用户,则显示的是$ 练习:基本命令 1.创建一个目录/data mkdir /data ...

  7. css3箭头

    <!DOCTYPE html> <html lang="en" class="muui-theme-webapp-main"> < ...

  8. TensorFlow支持GPU配置问题

    目录 Tensorflow-GPU 环境条件 现有硬件 现有软件 硬件要求 软件要求 步骤 0.Visual studio 1.下载安装显卡驱动 2.下载对应版本 CUDA 3.安装配置 cuDNN ...

  9. python 简单爬虫(beatifulsoup)

    ---恢复内容开始--- python爬虫学习从0开始 第一次学习了python语法,迫不及待的来开始python的项目.首先接触了爬虫,是一个简单爬虫.个人感觉python非常简洁,相比起java或 ...

  10. CSS3 文本溢出问题

    一.单行: 效果: 实现这各效果必须要加上: text-overflow: ellipsis; /*文本溢出*/ overflow: hidden; /*配合使用:溢出隐藏*/ white-space ...