loginuser.jsp
来自「成绩查询系统(学校期末的作业) Struts+jdbc+mysql+tomca」· JSP 代码 · 共 39 行
JSP
39 行
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ page language="java" contentType="text/html; charset=gb2312" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html:html>
<head>
<link href="../styles/main.css" type="text/css" rel="stylesheet" >
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>用户信息</title>
</head>
<body>
<html:form action="/loginuser" focus="number">
<table>
<tr>
<th align="right">账号:</th>
<td>
<c:out value="${loginuserForm.number}"/>
</td>
</tr>
<tr>
<th align="right">姓名:</th>
<td>
<c:out value="${loginuserForm.realname}"/>
</td>
</tr>
<tr>
<th align="right">班级:</th>
<td>
<c:out value="${loginuserForm.classname}"/>
</td>
</tr>
<tr>
<th align="right">院系:</th>
<td>
<c:out value="${loginuserForm.department}"/>
</td></tr></table></html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?