… the table fields should be like this :
(x and i are spaces in the columns)
(option 1) AAAAxxxxxi BBBBBBBBxx CCCCxxxxxxxx DDDDxxxxxxxi EEEEE
(option 2) AAAAAAxxx BBBxxxxxxxx CCxxxxxxxxxxi DDDDDDDDD
(option 3) AAAAAAAAx xxxxxxxxxxx CCCCCCCCxxxi xxxxxxxxxxxxx EEEE
(option ....
Where should the code below be adjusted to become this structure?
<select NAME="ActId">
<%
rs.MoveFirst
Do While Not rs.EOF
%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#000000;" value="<%=rs("ActId")%>"><%=rs("Field_A")&" "&rs("Field_B")&" "&rs("Field_C") ...
%></p></option>
<%
rs.MoveNext
Loop
%>
</select>
Thanks for tips.
(x and i are spaces in the columns)
(option 1) AAAAxxxxxi BBBBBBBBxx CCCCxxxxxxxx DDDDxxxxxxxi EEEEE
(option 2) AAAAAAxxx BBBxxxxxxxx CCxxxxxxxxxxi DDDDDDDDD
(option 3) AAAAAAAAx xxxxxxxxxxx CCCCCCCCxxxi xxxxxxxxxxxxx EEEE
(option ....
Where should the code below be adjusted to become this structure?
<select NAME="ActId">
<%
rs.MoveFirst
Do While Not rs.EOF
%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#000000;" value="<%=rs("ActId")%>"><%=rs("Field_A")&" "&rs("Field_B")&" "&rs("Field_C") ...
%></p></option>
<%
rs.MoveNext
Loop
%>
</select>
Thanks for tips.