Skip to content

Instantly share code, notes, and snippets.

@marcric
Last active September 13, 2016 02:37
Show Gist options
  • Save marcric/5735208 to your computer and use it in GitHub Desktop.
Save marcric/5735208 to your computer and use it in GitHub Desktop.
Exemplo de JSP.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Detalhes do Cliente</title>
</head>
<body>
<form action="dadosCliente" method="post">
<table align="center" bgcolor="#99FFCC" border="1" width="70%">
<tr>
<td colspan="2" align="center">Detalhes do Cliente </td>
</tr>
<tr>
<td>Nome </td>
<td><input type="text" name="name" maxlength="25"></td>
</tr>
<tr>
<td>Endereço </td>
<td><input type="text" name="address" maxlength="40"></td>
</tr>
<tr>
<td>Celular </td>
<td><input type="text" name="mobile" maxlength="10"></td>
</tr>
<tr>
<td>Email </td>
<td><input type="text" name="emailid" maxlength="30"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment