Question VB Application to read websites, cookies, and sessions

sensicorp

New member
Joined
Sep 5, 2008
Messages
1
Programming Experience
1-3
Hello,

I want to create a VB application (not an asp page) that will take a bunch of URLs that I feed into it and then read the cookie information and session variables that correspond to the website.

I am having a hard time finding this info on the web because everything seems to relate to aspnet websites reading cookies and sessions :) This is not what I want, though.

Can someone point me in the right direction? I really want to do this, but it seems I am stuck. Will I need to use a webbrowser control or can I do this with HttpWebRequest or some other method?

Thanks in advance!!
 
You can use HttpWebRequest to get cookies, see help topic HttpWebResponse.Cookies Property for code example. Session variables is server data and not available client side.
 
Back
Top