Motabobo
08-09-2003, 01:49 PM
Hi !
I have some problems sending a form's content and ASP querystring data to another frame.
My frame layout (& frame names) can be seen here :Image (http://pages.infinit.net/rouxjean/frames.JPG)
My problem is that i'm trying to send the content of a form (with radio buttons) of the "LEFT" frame to the "MILIEU" frame (more specifically to the photos.asp page) that is nested within the "CONTENT" frame. I'm also trying to send some data through the querystring. Everything must be done through an hyperlink... located on the "LEFT" frame.
Form name : thumbnail
cell name : prv
Here is my frameset code :
<FRAMESET frameid="fset" border="0" cols="239,*">
<FRAME src="leftproto.asp" name="left" id="left" scrolling="no" noresize>
<FRAMESET rows="58,*,29">
<FRAME name="haut_droite" target="bas_droite" scrolling="no" noresize src="navigation.asp">
<FRAME name="content" src="photos.asp" scrolling="auto" noresize>
<FRAME name="footer" scrolling="no" noresize src="footer.asp" target="_self">
</FRAMESET>
</FRAMESET>
As you can see the "MILIEU" frame is nested within the "CONTENT" frame...here is the code :
<frameset rows="59,75%,*" framespacing="0" border="0" frameborder="0">
<frame name="haut" scrolling="no" noresize target="milieu" src="top.asp">
<frame name="milieu" target="bas" scrolling="no" noresize src="test.asp">
<frame name="bas" src="../nouvelle_page_1.htm" scrolling="auto">
</frameset>
The querystring is a piece of cake...i only add a key to my hyperlink's href and point it to the right frame....
I want, however, the data to be "stored" in the frame page photos.asp instead of, say photos.asp so i can use the data in all of my subsequent pages.
Thanks
I have some problems sending a form's content and ASP querystring data to another frame.
My frame layout (& frame names) can be seen here :Image (http://pages.infinit.net/rouxjean/frames.JPG)
My problem is that i'm trying to send the content of a form (with radio buttons) of the "LEFT" frame to the "MILIEU" frame (more specifically to the photos.asp page) that is nested within the "CONTENT" frame. I'm also trying to send some data through the querystring. Everything must be done through an hyperlink... located on the "LEFT" frame.
Form name : thumbnail
cell name : prv
Here is my frameset code :
<FRAMESET frameid="fset" border="0" cols="239,*">
<FRAME src="leftproto.asp" name="left" id="left" scrolling="no" noresize>
<FRAMESET rows="58,*,29">
<FRAME name="haut_droite" target="bas_droite" scrolling="no" noresize src="navigation.asp">
<FRAME name="content" src="photos.asp" scrolling="auto" noresize>
<FRAME name="footer" scrolling="no" noresize src="footer.asp" target="_self">
</FRAMESET>
</FRAMESET>
As you can see the "MILIEU" frame is nested within the "CONTENT" frame...here is the code :
<frameset rows="59,75%,*" framespacing="0" border="0" frameborder="0">
<frame name="haut" scrolling="no" noresize target="milieu" src="top.asp">
<frame name="milieu" target="bas" scrolling="no" noresize src="test.asp">
<frame name="bas" src="../nouvelle_page_1.htm" scrolling="auto">
</frameset>
The querystring is a piece of cake...i only add a key to my hyperlink's href and point it to the right frame....
I want, however, the data to be "stored" in the frame page photos.asp instead of, say photos.asp so i can use the data in all of my subsequent pages.
Thanks