Jepe d Hepe
Jepe d Hepe

Reputation: 909

accessing Frames rendered in webbrowser control in C#.net

i need to get the links in a page rendered in webbrowser control in C#.net. Problem is that i think the page uses Frames that's why i cant get any links from webbrowser. how can i access or see those frames in the webbrowser control?

Upvotes: 1

Views: 4073

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038800

You could use the Frames property: webBrowser1.Document.Window.Frames

Upvotes: 5

Related Questions