Hi,
This is doable if your website uses persistent cookies for login. The basic steps are:
1. Use ThreadRunner to create an off-screen WebView. See here for more details:
https://www.essentialobjects.com/doc/webbrowser/start/webview_no_ui.aspx2. Load the login page, fill in user name and password and submit the page. You will need to use JavaScript to do this. See here for more details:
https://www.essentialobjects.com/doc/webbrowser/advanced/js.aspx3. If your website uses a persistent cookie for login, then as a response of the submit in step 2, the server would send an authentication cookie down to the WebView;
4. The WebView would save this cookie in the "cookie jar";
5. You can then use another visible WebView to load another page. The cookie received in step 3 will be automatically attached to the request and the server would consider it authenticated;
As you can see, step 3 and 4 are what enabled both WebView to share a single "session". If the server does not instruct the client to save cookie (similar to "Remember Me" option found in many login pages), then step 4 would not occur and step 5 would not succeed.
Hope this helps. Please let us know if you still have any more questions.
Thanks!