to_login.jsp
来自「一个功能极其简单的网上书店系统」· JSP 代码 · 共 43 行
JSP
43 行
<%@ page contentType="text/html; charset=gb2312" language="java" %>
<%@ include file="session.jsp" %>
<%@ page import="java.sql.*" %>
<%
request.setCharacterEncoding("gb2312");
String strusername=request.getParameter("username");
//String strpasswd=request.getParameter("passwd");
%>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
A:link{text-decoration:none}
A:visited{text-decoration:none}
A:hover{font-size:20px;text-decoration:underline}
</style>
</head>
<body>
<jsp:include page="inc/head.inc" /> <!--引入界面头文件-->
<jsp:include page="inc/sub.inc" /> <!--引入客户权限文件-->
<hr>
<table width="1000">
<tr>
<td width="400" align="center">
<font face="隶书" color="#6600CC" size=36px>欢迎登录博文阁在线书店</font>
<jsp:include page="inc/time.inc" /> <!--引入时钟文件-->
<jsp:include page="inc/left.inc" /> <!--引入左模块文件-->
</td>
<td width="600">
</td>
</tr>
</table>
<hr>
<jsp:include page="inc/tail.inc" /> <!--引入界尾文件-->
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?