information.jsp
来自「是一个J2EE的项目,在eclipse下编译通过,应用struts,hibern」· JSP 代码 · 共 23 行
JSP
23 行
<%@ page language="java" contentType="text/html;charset=UTF-8" pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>information page</title>
</head>
<body>
This is information page. <br>
<c:if test="${personinf!=null}">
<table cellspacing="3" border="1" style="position:absolute;left:180px;top:100px;">
<tr>
<td><c:out value="${personinf.id}"></c:out></td><td><c:out value="${personinf.name}"></c:out></td>
</tr>
</table>
</c:if>
<c:out value="${message}"></c:out>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?