Link to home
Start Free TrialLog in
Avatar of whiwex
whiwex

asked on

Get controls from IFrame using vb.net

I have a vb.net app that loads a web page from a remote site. I want to populate the text boxes in the the iframe with test from my code. I  am not using a webbrowseer control because it is not a windows form. how do I find the controls in the remote page and populate them.

Thanks
Avatar of Ark
Ark
Flag of Russian Federation image

How do you "load" web page?
Avatar of whiwex
whiwex

ASKER

I change the src of the iframe
via javascript and JQuery:
$("#myiframe").contents().find("#myFieldId").html("Hello");
Avatar of whiwex

ASKER

I would like to do this from code behind
ASKER CERTIFIED SOLUTION
Avatar of Ark
Ark
Flag of Russian Federation image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial