text.jsp

来自「网络商店源代码用NetBeans6.1Beta开发」· JSP 代码 · 共 41 行

JSP
41
字号
<%@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"><%            String file = new java.io.File(request.getRequestURI()).getName();            String title = "Text with external handler (" + file + ")";%><html>    <head>        <title><%= title %></title>        <style>            @import url("entry.css");            table.entry td.left { width: 90px; }        </style>        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">    </head>    <body>             <%@ include file="nav.jsp" %>                <form action="TextHandler">            <table class="entry">                <tr>                    <td class="left">Price:</td>                    <td><input type="text" class="text" name="tf"/></td>                </tr>                <tr valign="top">                    <td class="left">Description:</td>                    <td>                        <!-- no whitespace between start & end tags -->                        <textarea name="ta" rows="10"></textarea>                    </td>                </tr>            </table>            <input type="submit" name="raw_button" value="submit"/>                    </form>    </body></html>

⌨️ 快捷键说明

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