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

📄 loginsucceed.jsp

📁 手工完成
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'LogInSucceed.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  <%String str = (String)session.getAttribute("user");
  	if(str == null)
  	{
  		str = request.getParameter("user");
  	}
  %>
  <body>
   <table width="714" border="1">
  <tr>
    <td colspan="2"><h2>Hi! Welcome "<%=str%>"  LogIn Succeed!.</td>
    <td width="130"><a href = "UserInforShow.jsp?user=<%=str%>">查看个人信息</a></td>
    <td width="130"><a href = "UserUpdateInfor.jsp?user=<%=str%>">更改个人信息</a></td>
    <td width="93"><div align="right"><a href = "LogIn.jsp">退出</a></div></td>
  </tr>
  <tr>
    <td width="200"> <a href = "UserSearchBook.jsp?user=<%=str%>">查找图书</a> </td>
    <td width="150"><a href = "BookShopCar.jsp?user=<%=str%>">查看我的购物车</a></td>
    <td><a href = "ShowSaveBook.jsp?user=<%=str%>">查看我的收藏夹</a></td>
    <td><a href = "UserBuyBook.jsp?user=<%=str%>">我的购书历史</a></td>
  </tr>
</table>
 	<br>
	<br>
   <table width="717" height="137" border="1">
  <tr>
    <td colspan="2" rowspan="3"><img src = "BookImg/111.jpg" width="900" height="537"></td>
  </tr>
</table>
  </body>
</html>

⌨️ 快捷键说明

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