Windows Form App Collecting cookies

  • Thread starter Thread starter pmclinn
  • Start date Start date
P

pmclinn

How would you access a cookie value from a windowsform?

This is how I do it from asp.net:

If Not Request.Cookies("RunNodeReport") Is Nothing Then

Response.Write(Request.Cookies("RunNodeReport").Value.ToString)
End If
 
Yes I mean Windows form collecting a web cookie.

Anyone have .net examples?
 
I want to write a program that scans the local computer and searches
for the cookie named: RunNodeReport
 
pmclinn said:
I want to write a program that scans the local computer and searches
for the cookie named: RunNodeReport

You'll need to access the cookie store on the users computer. IE and Mozilla/Firefox store them
differently though.


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"

Get your ASP.NET in gear with IntraWeb!
http://www.atozed.com/IntraWeb/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top