Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript thread: Form target to a frame on new window


Message #1 by "Ravelonjohanison" <lovaa@e...> on Mon, 23 Jul 2001 15:22:19 +0200 (W. Europe Daylight Time)
Sorry, I replied to quickly without seeing the word "New"...

Does the new window open when the form is submitted? if so, set the target
of the form to _blank, then make c.asp read in the form parameters and pass
them onto the page where you want them.

e.g.

<FRAMESET...>
<FRAME
SRC="page.asp?param1=<%=request.querystring("param1")%>¶m2=<%=request.qu
erystring("param2")%>" name ="a">
<FRAME SRC="..." name ="b">
</FRAMESET>

-----Original Message-----
From: Ravelonjohanison [mailto:lovaa@e...]
Sent: 24 July 2001 09:52
To: javascript
Subject: [javascript] RE: Form target to a frame on new window


I've already try it but..still not working.
the scenario is like this :

1) form.htm submit form to a new popup window 'c.asp'.
3) c.asp contains 2 frames 'a' and 'b'.
   and i want to target frame 'a'.

Thanks in advance.
Lova

> <FORM METHOD="POST" ACTION="...action_url..." TARGET="...frame_name...">
> 
> -----Original Message-----
> From: Ravelonjohanison [mailto:lovaa@e...]
> Sent: 23 July 2001 14:22
> To: javascript
> Subject: [javascript] Form target to a frame on new window
> 
> 
> Hello all,
> 
> I want to submit form to a specified frame on a new window.
> Is It possible??
> 
> Please Help me!!
> Lova


  Return to Index