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

Frames

Status
Not open for further replies.

Skittle

ISP
Sep 10, 2002
1,528
US
I have a need to create a page with two frames.
The top frame will be a page that accepts an SQL statement
in a text box in a form. The second frame below will display the results of the SQL statement passed to client side processing without changing anything on the top frame.

How do I tell my top frame form to process the results in the bottom frame? I need the 'action' parameter of the form to not only execute my server side asp script but to display the results in the bottom frame. What is the format of the 'action' parameter to do this?

Many Thanks

Roy
 
You can do this:
<form target=&quot;bottom_frame_name&quot;>
That will load the action page into the bottom frame and do nothing to the top one.

Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top