可能重複:
Setting popup window to be a child of MDI Control when using WebBrowser ControlWeb瀏覽器的新窗口問題
當我在WebBrowser控件點擊一個鏈接< a onclick="OpenNewWindow(); />
,我想有一個新的web瀏覽器打開該鏈接。
但是,我遇到了兩個問題。
- 我如何獲得新的URL
新的瀏覽器窗口將如何得到當前的Cookie?
webBrowser1.NewWindow += (o, e) => { e.Cancel = true; Form2 f = new Form2(); f.URL = ""; // How to get the new url f.Cookie = ""; // How to copy the cookie to the new webbrowser? f.ShowDialog(); };
同意這是一個dup。 (對於提供的答案,dup的MDI部分並不重要。) –