Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/08/2002, 08:57
Avatar de AlZuwaga
AlZuwaga
Colaborador
 
Fecha de Ingreso: febrero-2001
Ubicación: 34.517 S, 58.500 O
Mensajes: 14.550
Antigüedad: 24 años, 2 meses
Puntos: 535
Re: UFFF !!!!!! arreglos de js con ASP

de javascript estoy como un 0 a la izquierda, pero me parece que estás haciendo mal el bucle. Yo lo haría así:


Código:
<SCRIPT LANGUAGE="JavaScript">
<%
cont =0
Do while not fechas.EOF And not fechas.BOF
%>
var variable_js="<%=cont%>"; 
alert(variable_js); 
team = new Array(
new Array("<%=(fechas.Fields.Item("kd_fecha").Value)%>","<%=cont%>" );
<%
cont=cont+1
fechas.MoveNext() 
loop
%> 
</script>