?? 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>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -