|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Showing information in a different form
Im making a restaurant program for my coursework. im creating a number of arrays so I can store things like:
- the customer number - the product bought - the product cost I have created a different form with three list boxes on it. in one list box i want the customer number for every sale to be shown, in the other i want every product bought to be displayed, in the final list box I want all of the bought products prices to be displayed. Im have absolutely no idea how to display this information in the seperate form. your help would be much appreciated. |
|
#2
|
|||
|
|||
|
Did you say you already have the information stored in arrays? Just print it out. Like...
Code:
<select id="customerno"> <% for i = 0 to ubound(aCustomerNo) %> <option><%=aCustomerNo(i)%></option> <% next %> </select> <select id="product"> <% for i = 0 to ubound(aProduct) %> <option><%=aProduct(i)%></option> <% next %> </select> ' etc. |
![]() |
| Viewing: Dev Articles Community Forums > Programming > ASP Development > Showing information in a different form |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|