1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| <%@ page contentType="text/html; charset=UTF-8" %> <!DOCTYPE> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Login in</title> </head> <body> <% request.setCharacterEncoding("UTF-8"); String strUserName = request.getParameter("username"); String strUserPwd = request.getParameter("password"); String strUserSex = request.getParameter("Sex"); String strUserBlood = request.getParameter("blood"); String strUserChar = request.getParameter("chatacter"); String strUserIemo = request.getParameter("iemo"); String strUserCity = request.getParameter("city"); %> <%--创建一个七行两列的表格--%> <table border="2" width="30%" height="20px"> <tr> <td>your name is :</td> <td><%=strUserName%> </td> </tr> <tr> <td>your password is :</td> <td><%=strUserPwd%> </td> </tr> <tr> <td>your Sex is :</td> <td><%=strUserSex%> </td> </tr> <tr> <td>your Blood is : </td> <td><%=strUserBlood%> </td> </tr> <tr> <td>our strUserChar is :</td> <td><%=strUserChar%> </tr> <tr> <td>your iemo is :</td> <td><%=strUserIemo%> </td> </tr> <tr> <td>your city is :</td> <td><%=strUserCity%> </td> </tr> </table> </body> </html>
|