Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

post to 2 Iframes

Status
Not open for further replies.

optjco

IS-IT--Management
Apr 13, 2004
185
GB
I posted this in the ASP forum and it was suggested that this forum would be the best place to try


I have 2 iFrames in table cells on one form.

myIframe & myIframe1

can i get the form to post to both Iframes, this is the form code i have at the moment

Code:
<form action="" method="post" name="frmPrint" target="myIframe" id="frmPrint">

I have tried this but it does not work

Code:
<form action="" method="post" name="frmPrint" target="myIframe","myIframe1" id="frmPrint">


Regards

Olly
 
Code:
<form action="" method="post" name="frmPrint" target="myIframe" id="frmPrint" onsubmit="this.target=(this.target=='myIframe')?'myIframe1:'myIframe'; if (this.target=='myIframe') {this.target='myIframe1'; this.submit();}>

--Chessbot

"In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after that a Seventh, and then an Eighth -- --" Flatland, A. Square (E. A. Abbott)
 
chessbot,
where exactly would i place this code, I have tried replacing the code I already have and it just screws up my page ??

Regards

Olly
 
Replace the current form tag.
What do you mean by "screws up my page"?

--Chessbot

"In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after that a Seventh, and then an Eighth -- --" Flatland, A. Square (E. A. Abbott)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top