information.jsp

来自「本源码主要从数据库的开发过程出发」· JSP 代码 · 共 62 行

JSP
62
字号
<%--     Document   : Information    Created on : 2008-5-9, 21:08:23    Author     : Administrator--%><%@page contentType="text/html" pageEncoding="GBK"%><%@ page errorPage="ErrorPage.jsp" %><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd">   <%   String inf=new String(request.getParameter("inf").getBytes("ISO-8859-1"),"GBK");   String returnStr=new String(request.getParameter("returnStr").getBytes("ISO-8859-1"),"GBK");   %><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=GBK" />        <title>Informatiom</title>        <style type="text/css">            <!--            #main {                background-color: #CCCCCC;                width: 750px;                margin-right: auto;                margin-left: auto;                padding-bottom: 30px;                padding-top: 30px;            }            #main #content {                background-position: center;                background-color: #FFFFFF;                width: 600px;                margin-right: auto;                margin-left: auto;                vertical-align: text-top;                text-align: center;                padding-top: 20px;                padding-bottom: 20px;            }            .STYLE3 {                width: 600px;                background-color: #666666;                margin-right: auto;                margin-left: auto;                font-size: xx-large;                font-weight: bold;                color: #FFFFFF;            }            -->        </style>    </head>    <body>        <div id="main">            <div class="STYLE3" id="title">Information</div>            <div id="content">                <%=inf%><BR><BR>                <%=returnStr%>            </div>        </div>    </body></html>

⌨️ 快捷键说明

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