I have IFRAME element placed on HTML page. This IFRAME uses navigate method to ASP page and displays this ASP
page which aventually would be hidden.
I need to read some elements value from this ASP page to
this parent(?) HTML page elements.Say,

HTMLpage.formName.elementName.elementValue=
ASPpage.formName.elementName.elementValue

What would be right way to do that?
I tried to use
document.all.frames["MyIFrame"].document.all
to read values, but it did not work.