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

📄 yue.jsp

📁 用hibernate框架实现网上书店
💻 JSP
字号:
<%@ page session="true" %><%@ page contentType="text/html; charset=GB2312" %><%@ page import="mypack.User" %><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">        <title>LIVE在线书店-余额查询</title>        <style type="text/css">            <!--            .STYLE21 {                color: #FF00FF;                font-size: 16px;                font-weight: bold;            }            .STYLE23 {                color: #33CCCC;                font-weight: bold;                font-size: 12px;            }            .STYLE27 {color: #33CC99; font-weight: bold; font-size: 12px; }            a:link {                text-decoration: none;            }            a:visited {                text-decoration: none;            }            a:hover {                text-decoration: none;            }            a:active {                text-decoration: none;            }            -->        </style>            </head>        <body>         <%@ include file="logo3.jsp" %>        <%         String uname=(String)session.getAttribute("uname");        User user=bookDB.getUser(uname);        if(uname==null)      {             out.println("<script>alert('您还没有登陆!');" +                    "location.href='login.jsp'</script>");           }      else      {                 %>        <table>            <tr>            <td width="185">                <table width="183" border="1" bordercolor="#00CCCC">                    <tr>                        <td width="200" height="33" align="center" bgcolor="#0099FF"><span class="STYLE1">我的LIVE</span></td>                    </tr>                    <tr>                        <td height="155"><table width="175" border="0">                              <tr>        <td height="49" align="center"><span class="STYLE27"><a href="showcart.jsp">查看我的购物车</a></span></td>      </tr>      <tr>        <td height="50" align="center"><span class="STYLE27"><a href="xiugai.jsp">修改我的登录密码</a></span></td>      </tr>      <tr>        <td height="65" align="center"><span class="STYLE23"><a href="chongzhi.jsp">我的充值服务</a></span></td>      </tr>      <tr>        <td height="65" align="center"><span class="STYLE23"><a href="yue.jsp">查看我的余额</a></span></td>      </tr>      <tr>        <td height="65" align="center"><span class="STYLE23"><a href="zhuxiao.jsp">退出此次登录</a></span></td>      </tr>                        </table></td>                    </tr>                </table>            </td>            <td width="580">                <table>                </table>                <table width="347" border="1" align="center" bordercolor="#0099CC">                    <tr>                        <td width="341" height="19" align="center" bgcolor="#00CCFF">查看我的余额</td>                    </tr>                    <tr><td>&nbsp;</td></tr>                    <tr>                        <td height="132" align="center">您的余额为<%=user.getMoney()%>元</td>                    </tr>            </table></td>        </table>        <%        }        %>    </body>    </html>

⌨️ 快捷键说明

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