webBrowser popup window loses session
I am using WebBrowser control of .NET to login into a website. Wh开发者_开发技巧en i click on a button that popups a new window the popup window asks me to login again. However i am not asked to login again if i open the webpage in internet explorer. Is there any way to make the WebBrowser control store session so that i do not have to login again on the popup window.
To maintain the session state you can use the NewWindow2
event to open the new page in another form in the application; the event is triggered by the WebBrowser
control.
Make sure that before clicking the button you already made Login.
In both cases, I think the solution which I am going to give will work for you.
For this purpose, I think you place login fields in panel and on page_load check either session empty or not if not then visible it false if yes then visible it true.
精彩评论