HTTP web请求不维护会话

编程入门 行业动态 更新时间:2024-10-11 21:28:07
本文介绍了HTTP web请求不维护会话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有计划,我想放弃一些有用的学习材料给我。 本网站维护会话密钥和其他一些关键也。 。如果我试图去嵌套页那么它将把我扔出去,并显示出会话消息。 我无法维持的Web请求类的会话密钥。 ,所以请给我一些想法,我怎么能保持在web请求堂课。

I have program where i want to scrap some Useful study material for me. This site maintaining session key and some other key also. If I trying to go nested page then it will throw me out and show session out message. I unable to maintain session key in web request class. so please give me some idea that how can i maintain session in web request class.

推荐答案

您需要维护在整个CookiesCollection您的要求。

You need to maintain the CookiesCollection across your requests.

var request = (HttpWebRequest)HttpWebRequest.Create("www.mysite/"); var cookies = new CookieContainer(); //Pass the collection along with each request to maintain session request.CookieContainer = cookies;

当你得到的答复回来,你的容器会自动包含了一组与之相关的cookie。然后,您可以重复使用后续请求该容器。

When you get the response back, your container will automatically contain the set of cookies associated with it. You can then reuse that container with subsequent requests.

更多推荐

HTTP web请求不维护会话

本文发布于:2023-11-28 14:20:48,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1642765.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:HTTP   web

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!