How can I delete a specific cookie from within my application? Everywhere I look for this turns up being for web development.
|
|
|||||
|
|
|
Cookies ARE for the web to detect info off any box. So, what is your exact objective....if it is deletion all you need is JavaScript to which you have to pass the cookie name to delete. If this doesn't answer your question...please elaborate your context. EDIT Ok, see if this helps use WebBrowser control available in Winforms |
||||||||
|
|
|
You can find cookies on the filesystem (for IE) in here:
|
||
|
|
|
|
Try using this:
|
||
|
|
|
|
Having a quick mess around in .NET 2008 you might be able to do something using the System.Web Library. I took the example at the bottom of the page found in the MSDN Here and took out the errors so that they referenced the Response and Request objects (HttpRequest and HttpResponse). This is not tested and i doubt it will even do its job, but it might help point you in the right direction. Also, i dont think this sort of think can be done... but maybe there is a way you can access the cookie collection.
|
|||
|
|
