Simulador (Cuando presiona el botón "ejecutar el programa"
se graban todos los cuadros de texto y se ejecuta el primero de la lista
mostrando en una página el resultado)
Problema:
<html>
<head>
<title>problema</title>
</head>
<body>
<form action="pagina1.asp" method="post">
Nombre y Apellido:
<input type="text" name="nombre" size="30"><br>
Edad:
<input type="text" name="edad" size="3"><br>
Dirección:
<input type="text" name="direccion" size="30"><br>
Mail:
<input type="text" name="mail" size="50"><br>
Curriculum<br>
<textarea name="curriculum" rows="10" cols="40"></textarea><br>
<input type="submit" value="enviar"><br>
</form>
</body>
</html>
<%option explicit%>
<html>
<head>
<title>problema</title>
</head>
<body>
<%
dim nombre,edad,direccion,mail,curriculum
nombre=request.form("nombre")
edad=request.form("edad")
direccion=request.form("direccion")
mail=request.form("mail")
curriculum=request.form("curriculum")
response.write("Nombre: " & nombre)
response.write("<br>")
response.write("Edad: " & edad)
response.write("<br>")
response.write("Dirección: " & direccion)
response.write("<br>")
response.write("Mail: " & mail)
response.write("<br>")
response.write("Curriculum: " & curriculum)
response.write("<br>")
%>
</body>
</html>