Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/04/2005, 13:35
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 11 meses
Puntos: 5
facil...

Código:
<select name="usuarios">
<%
	while not RSUsuarios.eof
		if RSUsuarios("idusuario") = idusuario_login_actual then
			response.Write(vbtab & "<option value=""" & RSUsuarios("idusuario") & """ selected>" & RSUsuarios("nombre_usuario") & "</option>" & vbcrlf)
		else
			response.Write(vbtab & "<option value=""" & RSUsuarios("idusuario") & """>" & RSUsuarios("nombre_usuario") & "</option>" & vbcrlf)
		end if
		RSUsuarios.movenext
	wend
%>
</select>
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.