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

📄 index.jsp

📁 database for flight reservation
💻 JSP
字号:
<%--     Document   : index    Created on : Oct 7, 2008, 8:50:36 AM    Author     : nbuser--%><%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%><%@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%><sql:query var="subjects" dataSource="jdbc/IFPWAFCAD">    SELECT subject_id, name FROM Subject</sql:query><%@page contentType="text/html" pageEncoding="UTF-8"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd"><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">        <link rel="stylesheet" type="text/css" href="style.css">        <title>IFPWAFCAD Homepage</title>    </head>    <body>        <h1>Welcome to IFPWAFCAD, the International Former Professional Wrestlers'            Association for Counseling and Development!</h1>                <table border="0">            <thead>                <tr>                    <th>IFPWAFCAD offers expert counseling in a wide range of fields.</th>                </tr>            </thead>            <tbody>                <tr>                    <td>To view the contact details of an IFPWAFCAD certified former                         professional wrestler in your area, select a subject below:                    </td>                </tr>                <tr>                    <td>                        <form action="response.jsp">                            <strong>Select a subject:</strong>                            <select name="subject_id">                                <c:forEach var="subject" items="${subjects.rows}">                                    <option value="${subject.subject_id}">${subject.name}</option>                                </c:forEach>                            </select>                            <input type="submit" value="submit" name="submit" />                        </form>                    </td>                </tr>            </tbody>        </table>    </body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -