Does anyone know how to show two fields from a Recordset in one List box ?I have a query that shows a list of Dates, and number os slots available for training for those dates. Can I show both of these fields in one List Box ???
Couldn't you create a child system where your user selected the date from the first box and that would automatically display the number of places available in a resulting second dropdown list? Or is that being too clever.
The other answer is that you should be able to create an option type selection by hand coding your recordset names, but they'd better coincide by ID or something or you'll get lots of unhappy chappies.
<option value="<%=(rs.Fields.Item("EventDate".Value)%><="<%=(rs.Fields.Item("EventPlaces".Value)%">Event Date and Available Places<option>
<SELECT>
<OPTION value="<%=Response.Write(rs.fields.item("lastname".value & ", " & rs.fields.item("firstname".value%>">
</SELECT> Live long and make your kids suffer..
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.