I have
Set objRst = Server.CreateObject("ADODB.Recordset"
strSQL = "SELECT * FROM tblTimeMatrix ORDER BY fldTechnology, fldTechID"
objRst.Open strSQL, objConnection
%>
<select name="listTech" size="10" multiple>
<%
Do While Not objRst.EOF
%>
<option <%=objRst("fldTechID"%>><%=objRst("fldTechID"%> # <%=objRst("fldTechnology"%> # <%=objRst("fldEquipment"%> # <%=objRst("fldTechDesc"%> # <%=objRst("fldHours"%> Hours <%
objRst.MoveNext
Loop
objRst.Close
Set objRst = Nothing
objConnection.close
Set objConnection = Nothing
%>
</select>
and I want the user to be forced to select at least one of these before they submit
any ideas?
Set objRst = Server.CreateObject("ADODB.Recordset"
strSQL = "SELECT * FROM tblTimeMatrix ORDER BY fldTechnology, fldTechID"
objRst.Open strSQL, objConnection
%>
<select name="listTech" size="10" multiple>
<%
Do While Not objRst.EOF
%>
<option <%=objRst("fldTechID"%>><%=objRst("fldTechID"%> # <%=objRst("fldTechnology"%> # <%=objRst("fldEquipment"%> # <%=objRst("fldTechDesc"%> # <%=objRst("fldHours"%> Hours <%
objRst.MoveNext
Loop
objRst.Close
Set objRst = Nothing
objConnection.close
Set objConnection = Nothing
%>
</select>
and I want the user to be forced to select at least one of these before they submit
any ideas?