Forum Moderators: open
So far i have one list box being populated by one field, but i need two fields?
<option value="<%=(rs_processor.Fields.Item("component_description").Value)%>"><%=(rs_processor.Fields.Item("component_description").Value)%></option>
the other field name is "component_price"
thanks
Code :
<option value="<%=(rs_processor.Fields.Item("component_description").Value)%><%=(rs_processor.Fields.Item("component_price").Value)%>"><%=(rs_processor.Fields.Item("component_description").Value)%>£<%=(rs_processor.Fields.Item("component_price").Value)%></option>
how do i get a tab space between the description and price
eg
20Gb Hard Disk £15.00
within the list box?
thanks