Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/06/2002, 10:08
Avatar de bakanzipp
bakanzipp
 
Fecha de Ingreso: noviembre-2001
Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 22 años, 6 meses
Puntos: 0
Re: ASP y Vbscript


¿?

Código:
 
sql="Select * from tabla"
Set rs=Conexion.execute(SQL)

if not (rs.eof) and not (rs.bof) then
<select name=combo>
while not rs.eof%>
<option value="<%=rs("campo1")%>"><%=rs("campo1")%></option>
<%rs.movenext
wend %>
</selected>
<%end if%>