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 sueldo bruto:
<input type="text" name="sueldobruto"><br>
Ingrese año de trabajo en la empresa:
<input type="text" name="antiguedad"><br>
<input type="submit" value="calcular"><br>
</form>
</body>
</html>
<%option explicit%>
<html>
<head>
<title>problema</title>
</head>
<body>
<%
dim sueldobruto,antiguedad,sueldototal,aumento
'cdbl convierte un valor a tipo double (con valores decimales)
sueldobruto=cdbl(request.form("sueldobruto"))
antiguedad=cint(request.form("antiguedad"))
if antiguedad<5 then
aumento=sueldobruto*0.10
else
if antiguedad<10 then
aumento=sueldobruto*0.15
else
aumento=sueldobruto*0.20
end if
end if
sueldototal=sueldobruto+aumento
response.write("Sueldo bruto : " & sueldobruto & "<br>")
response.write("Sueldo total : " & sueldototal)
%>
</body>
</html>