Adding WebBrowser dynamically from a parent webbrowser

VinodMadanagopal

New member
Joined
Oct 7, 2008
Messages
2
Programming Experience
1-3
Hi,

I have created a WebBrowser, which takes the login credentials and opens a next webpage.
This Webpage should be opened in another webbrowser also ie. in Browser after opening a site, and want to open a new window, we use File-->New-->Window, which displays the same content of the parent browser...

Kindly help...

Regards,
Vinod
 
Hi,

I am new to this forum. sorry if i have raised the question in wrong forum.

scenario:

I have a web browser within the tab. I will be keying in the UserName and Password. The WebBrowser navigates to the second page.

After successful navigation, i like to open 4 webbrowser sessions in different tabs from the parent browser.

the second page should be displayed in all the 4 webbrowser sessions using the login credenials of the browser 1.

I have worked out like this
VB.NET:
Dim TabPageObj As New TabPage
TabControl1.TabPages.Insert(1, TabPageObj)
Dim WebBrowserControl As New WebBrowser
WebBrowserControl.Name = "WebBrowser" & CStr(1)
TabControl1.TabPages(1).Controls.Add(WebBrowserControl)
WebBrowserControl.Dock = DockStyle.Fill

I am not getting multiple session of the parent browser...

kindly help.......
 
Back
Top