⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userinfo.jsp~1~

📁 JBuild工程
💻 JSP~1~
字号:
<%@ 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="org.pan.web.book.indent" %>
<jsp:useBean id="my_indent" scope="page" class="org.pan.web.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 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>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p class="style5">欢迎来到这里!</p>
  <p class="style5 style6">&nbsp;</p>
  <p class="style5 style6"><a href="index.jsp">首页</a></p>
  <p>&nbsp;</p>
</div>
</body>
</html>

⌨️ 快捷键说明

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