user_home_page.jsp

来自「《J2EE专业项目实例开发》源代码」· JSP 代码 · 共 82 行

JSP
82
字号
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-us">
<title>User Home Page</title>
</head>


<body bgcolor="#C0C0C0" topmargin="0" background="http:\\localhost:8000\music\Background.bmp" >

<table border="0" width="100%">
  <tr>
    <td width="100%">
      <table border="0" width="97%" height="19">
        <tr>
          <td width="18%" height="13" valign="middle" align="right">
      <font face="Arial" size="5" color="#800000"><b><i>eMusicWorld-----&gt; The World of Music</i></b></font>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>

	<%@ page import="java.util.*" %>
<form method="get" action="http://localhost:8000/music/user_home_page.jsp">

      
<table border="1" width="100%">
  <tr>
          <td width="11%" height="13" valign="middle" align="center"><font face="Arial" size="2" color="#800000"><b><a href="Offers.jsp">Offers</a></b></font></td>
          <td width="20%" height="13" valign="middle" align="center"><font face="Arial" size="2" color="#800000"><b><a HREF="http://localhost:8000/music/shopping_cart.jsp">Shopping Cart</a></b></font></td>
          <td width="16%" height="13" valign="middle" align="center"><font face="Arial" size="2" color="#800000"><b><a HREF="http://localhost:8000/music/wishlist_page.jsp">Wishlist</a></b></font></td>
          <td width="8%" height="13" valign="middle" align="center"><font face="Arial" size="2" color="#800000"><b><a HREF="http://localhost:8000/music/feedback_page.jsp">Feedback</a></b></font></td>
          <td width="13%" height="13" valign="middle" align="center"><font face="Arial" size="2" color="#800000"><b><a HREF="http://localhost:8000/music/user_buy_page.htm">Buy</b></font></a></b></font></td>
          <td width="9%" height="13" valign="middle" align="center"><font face="Arial" size="2" color="#800000"><b><a HREF="http://localhost:8000/music/logout_page.jsp">Logout</a></b></font></td>
  </tr>
</table>
<table border="1" width="100%">
  <tr>
    <td width="18%">

<p><font face="Arial" size="2" color="#800000"><b><a HREF="http://localhost:8000/music/home_page.htm">Home</a></b></font></p>

<p><b><font face="Arial" size="2" color="#800000"><a HREF="http://localhost:8000/music/chart_toppers.jsp">Chart Toppers</a></font></b></p>
<p><b><font face="Arial" size="2" color="#800000"><a HREF="http://localhost:8000/SearchContext/SearchAlias">Search</a></font></b></p>
<p><b><font face="Arial" size="2" color="#800000"><a HREF="http://localhost:8000/music/vote_page.jsp">Vote</a></font></b></p>
<p><b><font face="Arial" size="2" color="#800000"><a HREF="http://localhost:8000/music/new_release_page.jsp">New Releases</a></font></b>
<p><font face="Arial" size="2" color="#800000"><b><a HREF="http://localhost:8000/Register/RegisterPage.htm">Register</a></b></font>
<p><font face="Arial" size="2" color="#800000"><b><a HREF="http://localhost:8000/music/help_page.htm">Help</a></b></font></p>
      <p>&nbsp;</td>
    <td width="82%" valign="top">
<%! String name;%>
<% 	try
	{
		name=session.getAttribute("username").toString();
		
	}
	catch(Exception e)
	{
		
	}
%>
  <p><font face="Arial" size="2" color="#800000">Dear&nbsp <%=name%>, </font></p>
  
  <p><font face="Arial" size="2" color="#800000">Welcome. Select an appropriate
  menu.</font></p>
      <p>&nbsp;</td>
  </tr>
</table>

<p>&nbsp; </p>

<p>&nbsp; </p>

</form>

</body>

</html>

⌨️ 快捷键说明

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