Ver Mensaje Individual
  #5 (permalink)  
Antiguo 24/05/2006, 08:44
Avatar de aurelitus
aurelitus
 
Fecha de Ingreso: marzo-2006
Mensajes: 59
Antigüedad: 18 años, 1 mes
Puntos: 0
no se como hacerlo

Esta es la parte del codigo donde quiero que la lista no quede muy grande, pero al escribir el ejemplo no me funciona, donde inserto estas lineas?

<style type="text/css">
<!--
select {
font-family: "Verdana;
font-size: 10px;
}
</style>

este es mi codigo

<SELECT NAME="SUCURSALES1" font SIZE=1 >

<%
'aqui abro mi consulta
rsTS.Open SQL, oConn
cuenta=1
%>
<OPTION value="0">Seleccione una Sucursal...</option>
<%
while not rsTS.EOF
%>
<OPTION VALUE="<%=rsTS.Fields("SUC")%>"
<% if rsTS.Fields("SUC")= XSUC1 then%>
SELECTED

<%end if%>><FONT SIZE=1>

<%=rsTS.Fields("DESCSUC")%></FONT></OPTION>
<%
rsTS.MoveNext
cuenta=cuenta+1
wend
rsTS.Close
%>
</SELECT>