Rank: Advanced Member Groups: Member
Joined: 2/26/2015 Posts: 53
|
I have an EO.Webbrowser application that brings up a website that requires you to login. Is there a way to have EO.Webbrowser remember the login on all future visits?
Once I put in the login info, and then go back to the page, the Browser doesn't remember
When I go through Chrome, its remembers the sign in.
Any help would be greatly appreciated.
Thanks,
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,221
|
Hi,
Try to use TabbedBrowser and see if it works for you. Login information are usually saved in cookies, where are saved on disk. If every time you start your application you use a different cache path, then information saved in the previous cache path won't be loaded (because the new cache path is different). By default the cache path is in your user's temp folder and contains the DLL version number and your AppDomain ID. So if you switch to a different user (temp folder would change), a different DLL version (the DLL version part in the cache path would change), or create another AppDomain (the domain ID part would change), then the cache path would change and you would lose previously saved cookies.
Thanks
|