code030.jsp
1<%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3<!DOCTYPE html> 4<html> 5<head> 6<meta charset="UTF-8"> 7<title>session</title> 8</head> 9<body> 10<form id="form1" name="form1" method="post" action="code031.jsp"> 11<div align="center"> 12 <table width="60%" border="0"> 13 <tr> 14 <td width="36%">你的名字是:</td> 15 <td width="64%"> 16 <input type="text" name="name" id="name"> 17 </td> 18 </tr> 19 <tr> 20 <td colspan="2"> 21 <input type="submit" name="submit" value="提交" > 22 </td> 23 </tr> 24 </table> 25</div> 26</form> 27</body> 28</html>