?? userinfo.jsp~6~
字號:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ page session="true" %>
<%
String username = (String)session.getAttribute("username");
if ( username == null || username.equals("") ){
response.sendRedirect("login.jsp?msg=nologin");
}
%>
<%@ page import="check.indent" %>
<jsp:useBean id="my_indent" scope="page" class="check.purchase" />
<%
String mesg = "";
String Uid = (String) session.getAttribute("userid");
long uid = 0;
try {
uid = Long.parseLong(Uid);
} catch (Exception e) {
uid =0;
mesg = "出現不可預知錯誤!";
}
if (!my_indent.getIndent(uid))
mesg = "你在本站還沒有購買過圖書。" ;
%>
<html>
<head>
<title> 個人信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script type="" language="javascript">
function openScript(url,name, width, height){
var Win = window.open(url,name,'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=yes' );
}
</script>
<link rel="stylesheet" href="books.css" type="text/css">
<style type="text/css">
<!--
body {
background-color: #FFFFFF;
background-image: url(images/bg05.jpg);
}
.style4 {
font-size: 18px;
color: #330099;
}
.style5 {
color: #FF0000;
font-size: 36px;
}
.style6 {
color: #0000FF;
font-size: 14px;
}
-->
</style></head>
<body text="#000000">
<div align="center" class="style4">
<p> </p>
<p> </p>
<p> </p>
<p class="style5"> 恭喜,注冊成功!</p>
<p class="style5 style6"> </p>
<p class="style5 style6"><a href="index.jsp">返回首頁</a></p>
<p> </p>
</div>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -