Tagged Questions
0
votes
3answers
255 views
C# getting webbrowser cookies to log in
I am creating an windows forms app, where I have a webbrowser control.
After user logs in with the webbrowser, I want to log in also with same account with Microsoft.Http.HttpClient or HttpWebRequest ...
0
votes
1answer
146 views
How cookies are handled in Webbrowser Control?
Does cookies in WebBrowser control acts as normal as in any other browser like Firefox or Chrome? I have made a simple interface for webbrowser control in VB, now im unable to manage login/logout of ...
0
votes
1answer
209 views
How to save cookies in WebBrowser control to custom path? [closed]
I need to split cookies from instances of WebBrowser control in .Net and save cookie to custom path.
1
vote
1answer
437 views
Disable Cookie read/write in webbrowser c# application
I want websites to not able to read cookies or write new cookies in a webbrowser c# control application. I will prefer to disable all read/write cookies operation for all websites when the webbrowser ...
0
votes
1answer
285 views
Set cookie in Windows Phone WebBrowser control
How do I add custom cookies to Windows Phone WebBrowser control?
0
votes
0answers
198 views
How can I stop a webbrowser control from showing cookie security warnings?
I'm using winform webbrowser control and sometimes when closing the application, I get this very annoying Windows Security Warning dialog about allowing cookies on the site. Here is the exact message:
...
2
votes
0answers
156 views
C# Scrape Cookie Values From WebBrowser Control?
I have no experience with webbrowser control I'm trying to do the following:
Navigate to website and to scrape the cookie values it gives back (specific with regex). I tried to search for this here ...
0
votes
0answers
190 views
C# Extract Cookie Values from Webbrowser Control?
Well This questions as far I was searching never been asked before...
I'm trying to extract a cookie value from my webbrowser control I wasn't been able to find any helpful information I want to ...
1
vote
3answers
813 views
Winforms WebBrowser: how to delete cookies
i'm trying to delete cookies in webbrowser control. This code deleted the cookies file, but before restarting the program, the cookies are still in memory.
private void deleteCookies(string domain)
...
3
votes
2answers
532 views
How to make web browser ignore cookies
Im making a windows phone app which uses a WebBrowser.
Im using this web browser to authenticate a users disqus account.
When i boot the emulator and runs the app, the user is requested to input their ...
2
votes
1answer
204 views
Is there any web browser engine for .net which can give back the response cookies with its path?
I need a web browser engine for using in my C# application (same as 'WebBrowser' of .Net). I need an engine which can give me back a cookie collection per request but with its full details such as ...
0
votes
0answers
185 views
Stop C# WebBrowser control saving data
I'm using the webBrowser control and I need it to stop saving passwords, and keeping me logged into websites I navigate to. I'm guessing I need to stop it automatically saving cookies and cache. Any ...
1
vote
2answers
703 views
Deleting cookies in WPF web browser control
I am developing a WPF application in which I am working with twitter API. To show twitter authentication page I am using WPF web-browser control. I am able to login and use twitter API successfully. ...
4
votes
1answer
446 views
WebBrowser control session sharing?
I host the IE's WebBrowser control (CLSID_WebBrowser) in a desktop windows application. This WB seems to store its session cookies independently of the machine's Internet Explorer (IE9, Win7).
I ...
3
votes
1answer
494 views
Trying to login to a website clicking a button (Httpwebrequest - cookies)
I've just started playing around with C# few weeks ago. i got a task i am trying to perform and not sure if the way i do it now is the right approach.
I am trying to login to a website(in my case ...
3
votes
1answer
236 views
Trying to login to a website clicking a button
I've just started playing around with C# few weeks ago. i got a task i am trying to perform and not sure if the way i do it now is the right approach.
I am trying to login to a website(in my case ...
2
votes
2answers
3k views
WebBrowser control and cookies
I have a problem with WebBrowser control and cookies.
First of all what happens when one navigates in a normal Web browser (IE9 in my case):
1.1. I open Web page http://www.gmail.com.
I enter my ...
0
votes
1answer
336 views
Working with cookies using WebBrowser
As part of the functionality of my program, I need to be able to log into a website and then navigate to the user-only sections.
The problem is that I need to do this for multiple sites, and also for ...
3
votes
2answers
344 views
How to login with different accounts at the same time with .net webbrowser control in C#
I would like to create an application, that contains two or more webbrowser controls. I would like to login to a website, that uses cookies, but when I logged in with one of the browsers, it replaces ...
2
votes
1answer
516 views
How to set cookie to the WebBrowser control only
I have a webbrowser control with flash video player inside. I want to set a cookie to the webbrowser control so I can play forbidden videos (that need this cookie). I don't want to set the cookie ...
2
votes
2answers
2k views
Possible to make WebBrowser control share cookies with HttpWebRequest?
is there a way to make the WebBrowser control in C#.NET and requests made by HttpWebRequest share cookies?
E.g. if a request is made programmatically with HttpWebRequest and then the HttpWebResponse ...
2
votes
2answers
374 views
Capturing cookie responses in C#
Using Web Browser control or http request in C#, when a website creates a cookie (or tries to), is there a way to capture and display that cookie?
1
vote
2answers
3k views
Allow/Block Cookies in WinForms Webbrowser Control
How can i set the Windows Forms webbrowser control to block or allow cookies for the site it will navigate?
1
vote
2answers
1k views
keeping cookies after application restart c# webbrowser control
I want to be able to preserve the state of the web browser control when an application is restarted. For example if I log into to a site with a two hour cookie expiration, I quit the app and restart ...
4
votes
1answer
2k views
WPF WebBrowser Cookies to be used in WebRequest
I try to construct WebRequest to a web page after successful logging in to secured web portal via WPF WebBrowser control, but stuck with the problem of reusing WebBrowser cookies in WebRequest.
...
10
votes
8answers
23k views
C#, Webbrowser control: How to delete Cookies from windows.form?
I am working with the Webbrowser control on a windows.form application written in C#. I would like to write a method for deleting the cookies from the Webbrowers control after it visits a certain ...