Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/08/2002, 04:06
ideafix
 
Fecha de Ingreso: abril-2002
Ubicación: La Comarca
Mensajes: 192
Antigüedad: 23 años
Puntos: 0
Re: leer Session dentro de un For Next


Prueba esto :

<select name="Tarea">
<%
Dim Clave,i
Clave=Session("ClaveTarea")
For i=1 to 9
%>
<option value="<%=i%">
<% If Clave=i Then %>
Selected
<% End if %>
>Tarea <%=i%></option>
<%
Next
%>
</select>

Saludos
Ideafix