Guest_imported
New member
- Jan 1, 1970
- 0
Hi,
I have the following codes...
<select name="SrcSelec" size="1">
<% Dim Rs
Set Rs = obj.GetId ()
Do While not Rs.eof %>
<option value="<% =Rs("id"%>"><%Rs("desc"% ></option>
<% Rs.movenext %>
<% Loop %>
</select>
For instance, it's going to load:
1 - cat
2 - dog
3 - horse
etc ...
I'd like it to defaut to a value of 3. How can I do this?
Thanks.
I have the following codes...
<select name="SrcSelec" size="1">
<% Dim Rs
Set Rs = obj.GetId ()
Do While not Rs.eof %>
<option value="<% =Rs("id"%>"><%Rs("desc"% ></option>
<% Rs.movenext %>
<% Loop %>
</select>
For instance, it's going to load:
1 - cat
2 - dog
3 - horse
etc ...
I'd like it to defaut to a value of 3. How can I do this?
Thanks.