?? loginsuccess.jsp
字號:
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>歡迎</title>
<style type="text/css">
<!--
.STYLE1 {
font-family: "宋體";
font-size: x-large;
color: #FF0000;
}
-->
</style>
</head>
<body>
<%
String name;
if(request.getParameter("username")!=null)
{name=request.getParameter("username");}
else
{name=(String)session.getAttribute("name");}
session.setAttribute("name",name); %>
<div align="center" class="STYLE1">歡迎! <%= name%></div>
<div align="left">
<p>請選擇需要的服務:</p>
<h1> 1. <a href="insert.html">插入訂單</a></h1>
<h1>2. <a href="search.html">查詢訂單</a></h1>
<h1>3. <a href="db.jsp">查看所有訂單列表</a></h1><br>
</div>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -