⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 confirmation.jsp

📁 大家好啊 快来抢购J2ME东东 挺不错的啊 不要后悔啊 抓住机会
💻 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 + -