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">
Ingrese Clave:<p>
<input type="password" name="clave1">
<br>
Repita el ingrese de la Clave:<p>
<input type="password" name="clave2">
<br>
<input type="submit" value="Ingresar">
</form>
</body>
</html>
<%option explicit%>
<html>
<head>
<title>problema</title>
</head>
<body>
<%
dim clave1,clave2
clave1=request.form("clave1")
clave2=request.form("clave2")
if clave1=clave2 then
response.write("<h2>Las claves ingresadas son iguales.</h2>")
else
response.write("<h2>Las claves ingresadas no son iguales.</h2>")
end if
%>
</body>
</html>