hi
in my first form i have a drop down menu.on selecting a choice from it i open the popup.in the popup i display the all types of products avaible in the selected category. he can enter the quantity he wants. now i have some 10 choices in the drop down menu. user can select any product and enter the quantity he wants. ultimately what i want is that when he enters the quantity for product1, product5 or product7 in the popup asp page, i want to display that in the main parent form.how can i dispaly that. i dont need to display in textbox or whatever. but i just it to display below the drop down. how can this be possible
here is the code below in the parent form:
Select a product typeProduct1Product2
etc...
and my function is:
my formb.asp==>
<%
tmpNumber = 0
prodID=Request.QueryString("itm")
response.write(prodID)
set rs = db.execute("Select name from tProduct where productID= '" & prodID & "' ")
%>
<%
do while not rs.eof %>
<% Response.Write rs("name") %>:
<%
rs.movenext
tmpNumber = tmpNumber +1
loop
%>