Foros del Web » Programando para Internet » Javascript »

PAGINAS CON CLAVES. Alguien conoce en.............

Estas en el tema de PAGINAS CON CLAVES. Alguien conoce en............. en el foro de Javascript en Foros del Web. PAGINAS CON CLAVES. Alguien conoce en la etiqueta siguiente donde tengo que colocar la dirección URL que será en este caso la PAGINA CORRECTA DE ...
  #1 (permalink)  
Antiguo 12/07/2002, 19:08
Usuario no validado
 
Fecha de Ingreso: diciembre-2001
Ubicación: MERIDA
Mensajes: 498
Antigüedad: 23 años
Puntos: 2
PAGINAS CON CLAVES. Alguien conoce en.............

PAGINAS CON CLAVES. Alguien conoce en la etiqueta siguiente donde tengo que colocar la dirección URL que será en este caso la PAGINA CORRECTA DE VALIDACION PARA UN USUARIO DETERMINADO.



<script language="JavaScript">
<!-- Key-code script by Bart Jellema

// You may use this script freely as long
// as you credit me for it...

// Script por Bart Jellema
// Usted puede usar libremente este Script
// cuando tú me acredites por él...

<!-- Traducido por Gabriel Rodríguez, Enero del 2000 -->

var usermulcode=24
// This is to validate the code. In this case /* Esto es para validar el Código. En este caso
// the code is 1234 so the mul = 1*2*3*4 = 24 /* el código es 1234 así la multiplicación = 1*2*3*4 = 24
// Change this value for your own code /* Cambie este valor para su propio código
// If your code is 2415 it will be /* Si su código es 2415 este será
// usermulcode = 40 (2*4*1*5) /* usermulcode = 40 (2*4*1*5)

var code=0 // the entered code /* El Código entrado
var mul=1 // the multiplied digits /* Los dígitos multiplicados
var digit=0 // number of digits entered so far /* Número de dígitos entrados hasta ahora
var fails=0 // number of tries done /* Número de intentos hechos

function Enter_code(number)
{
code=code*10+number // Add the digit to the code /* Agrega el dígito al código
mul=mul*number // Update mul-value /* Actualiza la multiplicación
document.codepad.thecode.value=code // Show code /* Muestra el Código
digit++ // Increase digit /* Incrementa los dígitos

if (digit==4) // Four digits entered /* 4 dígitos entrados
{




CONTINUA EL CODIGO EN EL SIGUIENTE POST...........
  #2 (permalink)  
Antiguo 12/07/2002, 19:13
Usuario no validado
 
Fecha de Ingreso: diciembre-2001
Ubicación: MERIDA
Mensajes: 498
Antigüedad: 23 años
Puntos: 2
Re: PAGINAS CON CLAVES. Alguien conoce en.............

if (mul==24) // This is to validate /* Esto es para validar
// the code. In this case /* El Código. En este caso
// the code is 1234 so the /* el código es 1234 así la
// mul = 1*2*3*4 = 24 /* multiplicación = 1*2*3*4 = 24
// Change this value for /* Cambie este valor para
// your own code /* su propio código
{
location=code+"http://WWW.PAGINACORRECTA.COM"
}
else
{
fails++ // Increase fails /* Incrementa los fallos
code=0 // Reset values /* Resetea los valores
mul=1
digit=0
if (fails<3)
{
if (fails==1)
{document.codepad.thecode.value="Otro Intento"}
if (fails==2)
{document.codepad.thecode.value="último intento"}
}
else // To many tries = worp back /* a muchas pruebas vuelve atrás
location="http://WWW.PAGINA-INCORRECTA.COM"
document.codepad.thecode.value="Hasta Luego!"
}
}
}
}

function keycodepad(mulcode)
{
usermulcode=mulcode
document.write("<form name=\"codepad\">");
document.write("<input type=\"button\" value=\" 1 \" onClick=\"Enter_code(1)\">");
document.write("<input type=\"button\" value=\" 2 \" onClick=\"Enter_code(2)\">");
document.write("<input type=\"button\" value=\" 3 \" onClick=\"Enter_code(3)\"><br>& quot;);
document.write("<input type=\"button\" value=\" 4 \" onClick=\"Enter_code(4)\">");



CONTINUO EN EL PROXIMO POST...........
  #3 (permalink)  
Antiguo 12/07/2002, 19:16
Usuario no validado
 
Fecha de Ingreso: diciembre-2001
Ubicación: MERIDA
Mensajes: 498
Antigüedad: 23 años
Puntos: 2
Re: PAGINAS CON CLAVES. Alguien conoce en.............

document.write("<input type=\"button\" value=\" 5 \" onClick=\"Enter_code(5)\">");
document.write("<input type=\"button\" value=\" 6 \" onClick=\"Enter_code(6)\"><br>& quot;);
document.write("<input type=\"button\" value=\" 7 \" onClick=\"Enter_code(7)\">");
document.write("<input type=\"button\" value=\" 8 \" onClick=\"Enter_code(8)\">");
document.write("<input type=\"button\" value=\" 9 \" onClick=\"Enter_code(9)\"><br>& quot;);
document.write("<input type=\"text\" name=\"thecode\" size=10 value=\"\"><br>");
document.write("</form>");
}
// Key-code script by Bart Jellema -->
</script>


<script>
keycodepad(24)
</script>






OK. Hasta allí es el código.



MI PREGUNTA ES:


COMO EXACTAMENTE DEBO COLOCAR EL URL DE LA PAGINA CORRECTA, LA CUAL LLEVARA A LOS USUARIOS CON CLAVES A DICHA PAGINA ???



P.D.




NECESITO SABER , SOLO COMO SE COLOCA LA PAGINA CORRECTA, YA QUE LA PAGINA INCORRECTA PARA LOS USUARIOS QUE NO TENGAN LAS CLAVES, YA LA SE HACER.



Espero me hayan entendido.






Alguien que pueda ayudarme ???



:(
  #4 (permalink)  
Antiguo 12/07/2002, 19:21
Avatar de gomo  
Fecha de Ingreso: mayo-2002
Ubicación: [email protected]
Mensajes: 906
Antigüedad: 22 años, 7 meses
Puntos: 0
Re: PAGINAS CON CLAVES. Alguien conoce en.............


Probaste ahi donde dice "WWW.PAGINACORRECTA.COM"???
Saludos


<div align="center"><img src="http://cablemodem.fibertel.com.ar/sainztrapaga/images/firma.jpg" width="435" height="70" border="0">
</div>
  #5 (permalink)  
Antiguo 12/07/2002, 19:35
 
Fecha de Ingreso: marzo-2001
Mensajes: 76
Antigüedad: 23 años, 9 meses
Puntos: 0
Re: PAGINAS CON CLAVES. Alguien conoce en.............

Cita:
if (mul==24) // This is to validate /* Esto es para validar
// the code. In this case /* El Código. En este caso
// the code is 1234 so the /* el código es 1234 así la
// mul = 1*2*3*4 = 24 /* multiplicación = 1*2*3*4 = 24
// Change this value for /* Cambie este valor para
// your own code /* su propio código
{
location=code+&quot;http://WWW.PAGINACORRECTA.COM&quot;
  #6 (permalink)  
Antiguo 12/07/2002, 20:04
O_O
 
Fecha de Ingreso: enero-2002
Ubicación: Santiago - Chile
Mensajes: 34.417
Antigüedad: 23 años
Puntos: 129
Re: PAGINAS CON CLAVES. Alguien conoce en.............

Y donde vas a poner este javascript para proteger esas paginas? xDDD :P

Un saludo,
  #7 (permalink)  
Antiguo 13/07/2002, 08:52
Usuario no validado
 
Fecha de Ingreso: diciembre-2001
Ubicación: MERIDA
Mensajes: 498
Antigüedad: 23 años
Puntos: 2
Re: PAGINAS CON CLAVES. Alguien conoce en.............

Hey Cluster.


El javascript lo pondré en:



<a href='ir.asp?http://www.microsoft.com' target='_blank'>http://www.microsoft.com...</a>









Espero que te sirva...


JEJEJEJE




:prohibido


<a href="http://www.800chicas.cjb.net" target="_blank"><img src="http://es.geocities.com/ve800chicas/ru.jpg">
  #8 (permalink)  
Antiguo 13/07/2002, 11:36
O_O
 
Fecha de Ingreso: enero-2002
Ubicación: Santiago - Chile
Mensajes: 34.417
Antigüedad: 23 años
Puntos: 129
Re: PAGINAS CON CLAVES. Alguien conoce en.............

jajaaj muy bunea!

Un saludo,
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 18:35.