Introduccion analisis de requerimientos para datacenter
Enviado por Gerardo9191 • 24 de Agosto de 2018 • Informe • 334 Palabras (2 Páginas) • 129 Visitas
<!DOCTYPE html>
<html>
<head>
<title>Todo supply a tittle</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<form name= "frmDatos" action="pagina1.jsp" method="get">
<b>Formulario</b>
<br>
Nombre:<input type="text" name="txtNombre" value="" />
<br>
Apellido:<input type="text" name="txtApellido" value="" />
<br>
Numero:<input type="text" name="Numeor" value="" />
<br>
<input type="submit" value="mostrar" name="btnMostrar" />
</form>
</body>
</html>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<%
String nombre = request.getParameter("txtNombre");
String apellido = request.getParameter("txtApellido");
int n = Integer .parseInt(request.getParameter("txtNumero"));
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<h1>Datos Pagina</h1>
<br>
Nombre:<%=nombre%>
<br>
Apellido:<%=apellido%>
<br>
Listado de numeros:
<%for (int x = 1; x < n; x++) {%>
<br>
Numero= <%=x%>
<br>
<%}%>
</body>
</html>
...