Posted on: 7/23/2015 6:24:43 AM | Views : 806

Hi,
I have created a new website that require login in login.aspx, and after pass login, save the user id and other information in session (ex. Session["UserID"] = User).  This website has a number of webpages that will check if the session value is null then will navigate to login.aspx. All functionality of the website is working well in browser.
Now, I try to create a small program using Windows Form and using Webbrowser control to open a webpage of above website. I want to programmatically assign Session value (ex. Session["UserID"] = "someone") before navigate to a webpage, as I want to skip the login.aspx process. How to programmatically assign Session value in Windows Form using Webbrowser?
Thanks,
Andy

Go to the complete details ...