ulwitch
Programmer
- Aug 24, 2001
- 22
I am having trouble referencing values in Frames.
<FRAMESET COLS=35%,65%>
<FRAMESET rows=30%,70%>
<FRAME NAME=LEFT src=Task6.asp frameborder=0 scrolling=no>
<FRAME Name=BottomLeft Src=Task6Bottom.asp frameborder=0>
</FRAMESET>
<FRAME NAME=RIGHT src=Task6Right.asp>
</FRAMESET>
If the following is in the Left frame, I need to read the information from the right frame.
<INPUT type="text" id=text1 name=text1 value=George>
I have tried several ways including:
Parent.left.document.formname.text1.value
<FRAMESET COLS=35%,65%>
<FRAMESET rows=30%,70%>
<FRAME NAME=LEFT src=Task6.asp frameborder=0 scrolling=no>
<FRAME Name=BottomLeft Src=Task6Bottom.asp frameborder=0>
</FRAMESET>
<FRAME NAME=RIGHT src=Task6Right.asp>
</FRAMESET>
If the following is in the Left frame, I need to read the information from the right frame.
<INPUT type="text" id=text1 name=text1 value=George>
I have tried several ways including:
Parent.left.document.formname.text1.value