I want to traverse alll the Textboxes in a webpage displayed in a WebBrowser Control...Can anyone tell me how to do this?
Printable View
I want to traverse alll the Textboxes in a webpage displayed in a WebBrowser Control...Can anyone tell me how to do this?
OK! I have done this... now i want to do the same with a webpage with frame... and i want to target only one frame...
I can do more for you if you show the code you have so far. :) Anyway, to target only one frame you can use the WebBrowser.Document property, which holds a reference to the frameset page. Then locate the frame like this: WebBrowser.Document.frames(0)
Can we use the name of frame instead of index number?
Done.. Thanx...My Problem is resolved