
25/06/2002, 10:08
|
 | | | Fecha de Ingreso: noviembre-2001 Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 23 años, 5 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%>
|