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

📄 songs.jsp

📁 JSP购物车(SQLserver版) ================== 简单的JSP电子商务网站购物车 带结算功能,带注册系统 大二时自己编写的,供大家参考学习 功能不是很详尽,美工
💻 JSP
字号:
<%@ page language="java" contentType="text/html;charset=UTF-8" %><%@ include file="../inc/common.jsp" %><%
com.yeqiangwei.club.module.music.view.jsp.SongJsp songJsp = new com.yeqiangwei.club.module.music.view.jsp.SongJsp(request,response);

java.util.List list = songJsp.findAllSongs(20);
%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>${basic.name}后台管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<club:html type="css" />
<script type="text/javascript" src="../scripts/common.js"></script>
</head>
<body>
<div id="wrap">
<div class="sitemap">
<ul>
<li>您的位置:</li><li>后台管理&gt;&gt;</li><li><h3>社区推荐歌曲</h3></li>
</ul>
</div>
<%@ include file="../inc/msgHint.jsp" %>
<div class="sidebar">
<form id="gform" name="gform" action="admin.do" method="post" onsubmit="c.p('qwsubmit',true);">
<table summary="社区用户列表" id="users">
<thead>
<tr>
<th scope="col" class="t_1">选择</th>
<th scope="col" class="t_0">歌曲名称</th>
<th scope="col" class="t_1">性别</th>
<th scope="col" class="t_2">推荐时间</th>
<th scope="col" class="t_2">推荐级别</th>
</tr>
</thead>
<tbody>
<c:forEach var="f" items="<%=list%>">
<tr>
<td><club:html type="input" htmlType="checkbox" name="songId" value="${f.songId}" /></td>
<td class="t_0">${f.songName}</td>
<td><club:link type="userNameLink" idIs="${f.userId}" value="${f.user.userName}" /></td>
<td style="font-size:8pt"><club:html type="datetime" lvalue="${f.createDateTime}" /></td>
<td>
<c:if test="${f.allowed==0}"><a href="admin.do?act=songAllowed&songId=${f.songId}">普通推荐</a></c:if>
<c:if test="${f.allowed==1}"><a href="admin.do?act=songAllowed&songId=${f.songId}">DJ推荐</a></c:if>
</td>
</tr>
</c:forEach>
</tbody>
</table>
<div class="empty"><%=songJsp.getJumppage()%></div>
<div class="tfoot">
<a onclick="c.clk('all','users');">全选</a>
&nbsp;&nbsp;
<a onclick="c.clk('un','users');">反选</a>
&nbsp;&nbsp;&nbsp;&nbsp;
<!--input type="submit" name="qwSubmit" id="qwSubmit" value="删除DJ" /-->
</div>
</form>
</div>
</div>
</body>
</html>
<!-- Powered by www.YeQiangWei.com -->

⌨️ 快捷键说明

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