
11/02/2009, 13:34
|
| | Fecha de Ingreso: agosto-2005 Ubicación: Cienfuegos, Cuba
Mensajes: 15
Antigüedad: 19 años, 8 meses Puntos: 0 | |
Respuesta: Usar Valor de Un Control de Texto Bueno, estoy diseñando Páginas web con DreamWeaver MX... y la Verdad no dá errores pero no se muestra valor a la hora de mostrar la salida, Hice un Resumido corto para uqe se pueda ver bien, aqui pego la pagina exactamente como está:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>Documento</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="form1" method="post" action="">
<input name="txtArea" type="text" id="txtArea" value="7">
</form>
<% call Entrada %>
</body>
</html>
<%
Sub Entrada
Dim A
A= Request("txtArea")
response.write ("Valor=" & A)
End Sub
%> |