Hi.
I've developed an intranet at work & they've asked if I could add the equivalent of an ALT tag to one of the combo boxes, which are created via SQL.
Here's the code...
So my colleagues would like some form of description displayed when the user selects items from this dropdown.
I'm using basic ASP (not .net) with bits of Javascript and VBSCript, so any ideas along those lines would be great.
Thanks in advance,
Jon
I've developed an intranet at work & they've asked if I could add the equivalent of an ALT tag to one of the combo boxes, which are created via SQL.
Here's the code...
Code:
<tr valign="top"><td><font face="Verdana" size="2"><b>Business Unit:</b></font></td><td>
<SELECT NAME="BusUnit" SIZE="1">
<OPTION SELECTED>
<%
Dim SQLBusn
SQLBusn = "Select * from tblBusUnit"
dbConn.Execute(SQLBusn)
Set RS = dbConn.Execute(SQLBusn)
Do While Not RS.EOF%>
<OPTION><%=RS("UnitName")%></OPTION>
<%RS.movenext%>
<%loop%>
</SELECT>
So my colleagues would like some form of description displayed when the user selects items from this dropdown.
I'm using basic ASP (not .net) with bits of Javascript and VBSCript, so any ideas along those lines would be great.
Thanks in advance,
Jon