Una ayudita que me tiene loco

21/10/2005 - 23:04 por Gatón | Informe spam
¿que será que no puedo darle al <input> el valor de la variable sTest?
No se si es algo que bebi o que cosa pasa

<%
sTest = 150
%>

<html>
<head>
<script language="javascript">

function mostrar(algo){
var temp = algo;
document.prueba1.txt1.value = temp;
}

</script>
</head>
<body>

<form name="prueba1">
<input type="text" name="txt1" size>

</form>

<script language="javascript">
mostrar(<%=sTest%>);
</script>

</body>
</html>


Saludos

Enrique Medina
Santiago de Chile

Preguntas similare

Leer las respuestas

#1 Manuel Vera
21/10/2005 - 23:55 | Informe spam
Creo q se soluciona colocandole el atributo VALUE al tag INPUT, así:

<input type="text" name="txt1" size VALUE="">

Creo que al no colocarlo, el script no lo "entiende".

Salu2
MV


"Gatón" <elsupergatonARROBAhotmail.com> wrote in message
news:
¿que será que no puedo darle al <input> el valor de la variable sTest?
No se si es algo que bebi o que cosa pasa

<%
sTest = 150
%>

<html>
<head>
<script language="javascript">

function mostrar(algo){
var temp = algo;
document.prueba1.txt1.value = temp;
}

</script>
</head>
<body>

<form name="prueba1">
<input type="text" name="txt1" size>

</form>

<script language="javascript">
mostrar(<%=sTest%>);
</script>

</body>
</html>


Saludos

Enrique Medina
Santiago de Chile


Respuesta Responder a este mensaje
#2 Gatón
22/10/2005 - 00:13 | Informe spam
Hola Manuel:

Comence asi y tampoco me funcionó pero podria haber existido otro error, lo
probare de inmediato

Saludos

Enrique Medina
Santiago de Chile

"Manuel Vera" escribió en el mensaje
news:
Creo q se soluciona colocandole el atributo VALUE al tag INPUT, así:

<input type="text" name="txt1" size VALUE="">

Creo que al no colocarlo, el script no lo "entiende".

Salu2
MV


"Gatón" <elsupergatonARROBAhotmail.com> wrote in message
news:
> ¿que será que no puedo darle al <input> el valor de la variable sTest?
> No se si es algo que bebi o que cosa pasa
>
> <%
> sTest = 150
> %>
>
> <html>
> <head>
> <script language="javascript">
>
> function mostrar(algo){
> var temp = algo;
> document.prueba1.txt1.value = temp;
> }
>
> </script>
> </head>
> <body>
>
> <form name="prueba1">
> <input type="text" name="txt1" size>
>
> </form>
>
> <script language="javascript">
> mostrar(<%=sTest%>);
> </script>
>
> </body>
> </html>
>
>
> Saludos
>
> Enrique Medina
> Santiago de Chile
>
>


Respuesta Responder a este mensaje
#3 Gatón
22/10/2005 - 00:15 | Informe spam
Volvi a correr el script SIN MODIFICAR NADA y funciona, me voy a retirar a
mi casa mejor por hoy.

Agradecido Manuel


Saludos

Enrique Medina
Santiago de Chile


"Manuel Vera" escribió en el mensaje
news:
Creo q se soluciona colocandole el atributo VALUE al tag INPUT, así:

<input type="text" name="txt1" size VALUE="">

Creo que al no colocarlo, el script no lo "entiende".

Salu2
MV


"Gatón" <elsupergatonARROBAhotmail.com> wrote in message
news:
> ¿que será que no puedo darle al <input> el valor de la variable sTest?
> No se si es algo que bebi o que cosa pasa
>
> <%
> sTest = 150
> %>
>
> <html>
> <head>
> <script language="javascript">
>
> function mostrar(algo){
> var temp = algo;
> document.prueba1.txt1.value = temp;
> }
>
> </script>
> </head>
> <body>
>
> <form name="prueba1">
> <input type="text" name="txt1" size>
>
> </form>
>
> <script language="javascript">
> mostrar(<%=sTest%>);
> </script>
>
> </body>
> </html>
>
>
> Saludos
>
> Enrique Medina
> Santiago de Chile
>
>


Respuesta Responder a este mensaje
#4 Manuel Vera
22/10/2005 - 00:51 | Informe spam
:D:D:D:D
Si, es buena idea.
Salu2
MV

"Gatón" <elsupergatonARROBAhotmail.com> wrote in message
news:
Volvi a correr el script SIN MODIFICAR NADA y funciona, me voy a retirar a
mi casa mejor por hoy.

Agradecido Manuel


Saludos

Enrique Medina
Santiago de Chile


"Manuel Vera" escribió en el mensaje
news:
> Creo q se soluciona colocandole el atributo VALUE al tag INPUT, así:
>
> <input type="text" name="txt1" size VALUE="">
>
> Creo que al no colocarlo, el script no lo "entiende".
>
> Salu2
> MV
>
>
> "Gatón" <elsupergatonARROBAhotmail.com> wrote in message
> news:
> > ¿que será que no puedo darle al <input> el valor de la variable sTest?
> > No se si es algo que bebi o que cosa pasa
> >
> > <%
> > sTest = 150
> > %>
> >
> > <html>
> > <head>
> > <script language="javascript">
> >
> > function mostrar(algo){
> > var temp = algo;
> > document.prueba1.txt1.value = temp;
> > }
> >
> > </script>
> > </head>
> > <body>
> >
> > <form name="prueba1">
> > <input type="text" name="txt1" size>
> >
> > </form>
> >
> > <script language="javascript">
> > mostrar(<%=sTest%>);
> > </script>
> >
> > </body>
> > </html>
> >
> >
> > Saludos
> >
> > Enrique Medina
> > Santiago de Chile
> >
> >
>
>


Respuesta Responder a este mensaje
#5 dani castillo
22/10/2005 - 10:29 | Informe spam
el script funciona... pero si es solo sacar en el input un valor de asp , es
mucho mas rapido asignarlo directamente no?
<input type="text" name="txt1" size VALUE="<%=stest%>">


"Gatón" <elsupergatonARROBAhotmail.com> escribió en el mensaje
news:
Volvi a correr el script SIN MODIFICAR NADA y funciona, me voy a retirar a
mi casa mejor por hoy.

Agradecido Manuel


Saludos

Enrique Medina
Santiago de Chile


"Manuel Vera" escribió en el mensaje
news:
Creo q se soluciona colocandole el atributo VALUE al tag INPUT, así:

<input type="text" name="txt1" size VALUE="">

Creo que al no colocarlo, el script no lo "entiende".

Salu2
MV


"Gatón" <elsupergatonARROBAhotmail.com> wrote in message
news:
> ¿que será que no puedo darle al <input> el valor de la variable sTest?
> No se si es algo que bebi o que cosa pasa
>
> <%
> sTest = 150
> %>
>
> <html>
> <head>
> <script language="javascript">
>
> function mostrar(algo){
> var temp = algo;
> document.prueba1.txt1.value = temp;
> }
>
> </script>
> </head>
> <body>
>
> <form name="prueba1">
> <input type="text" name="txt1" size>
>
> </form>
>
> <script language="javascript">
> mostrar(<%=sTest%>);
> </script>
>
> </body>
> </html>
>
>
> Saludos
>
> Enrique Medina
> Santiago de Chile
>
>






Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaSiguiente Respuesta Tengo una respuesta
Search Busqueda sugerida