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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing Form input with frames

Status
Not open for further replies.

Sharkfin01

Programmer
Sep 26, 2001
13
GB
Hi all, have two problems:
First, I have a web page with frames--frame on the right (which I'll call frmINPUT) accepts user input for use later. I have the standard form=get method...Now, I DON'T want the frmINPUT to change to the parameter receiving page...in other words, I just want to pass the parameters t the receving page, but not actually navigate to that page. Any suggestions? THanks.
 
try putting both the form and the recieving page, into the same, page, then the parameters can be passed if the page required is opened....
ie a simple example

<form method=&quot;get&quot; action=&quot;thispage.asp&quot;>
<input type=&quot;text&quot; name=&quot;name&quot;>
<input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;submit>
</form>
<% dim name1
name1=request.form(&quot;name&quot;)
if name1=&quot;&quot; then %>
<% else %>
<% ' Place the recieving details here and the parameters can be passed at a later time
%>

the above, will always display the same form, and the answers on the form will be processed in the background each time.....

I do not know if that is what you wanted but i hope it helps
 
If u need to send any data from client to server without submit u need to use Remote Scripting Object, i answer at this question in an old thread.
Hope this helps u. If not Tell me... ________
George, M
 
Sharkfin,

Would you consider posting the form to a new window with a simple, &quot;Thank You&quot; displayed in the sub window. It won't affect your original documents ??

ToddWW
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top