📄 confirmation.jsp
字号:
<%@ page language="java" contentType="text/html" %>
<%@ page import="com.ora.jsp.sql.*" %>
<%@ taglib uri="/orataglib" prefix="ora" %>
<html>
<head>
<title>Employee Info Stored</title>
</head>
<body bgcolor="white">
This is the information stored in the employee database:
<table>
<ora:loop name="newEmpDbInfo" loopId="row" className="Row" >
<ora:loop name="row" property="columns" loopId="col"
className="Column" >
<tr>
<td align=right>
<b><jsp:getProperty name="col" property="name" />:</b>
</td>
<td>
<jsp:getProperty name="col" property="string" />
</td>
</tr>
</ora:loop>
</ora:loop>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -