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

submit selcted items.

Status
Not open for further replies.

solo7

Technical User
Mar 14, 2001
243
NO
Ok. I've managed to get the selected values from my list box to appear in the address bar at the top of the browser as if passing the selected items, when my sumbit button is pressed. All this with the help of F1 and TARWN.

These items are to be passed to the 'finish.asp' for for a SQL SELECT query and the resultant one record is to be displayed. I've built the 'finish.asp' page but my browser is crashing out with a CANNOT FIND 'finish.asp' PAGE.
My 'finish.asp' page consists of this code in the header:-


<%
first = request.queryString(&quot;first&quot;)
second = request.queryString(&quot;second&quot;)
%>



I've set a break point on the second line just to see if it works but it's not even getting this far ?

Help I'm getting embarrassed asking questions now !!!

Steady ... [thumbsup2]

 
If your browser can't find your &quot;finish.asp&quot; page, the problem is not in it but before. May be you forgot to put the path (absolute or relative) in the href property of the anchor that brings you to this page.
Check if the source and target pages are in the same directory and add the path info to the link. Water is not bad as soon as it stays out human body ;-)
 
Is your finish.asp page on the place you especify on the action of the form?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top