📄 soundgl.jsp
字号:
<%@ page contentType="text/html;charset=GBK"%>
<%@ include file="/inc/pv/user.jsp"%>
<%@ include file="/inc/public/msg.jsp"%>
<%
String strOfficeStyle = site.bean.SitePara.strVirtualName + "/member/" + igec.util.CookieUtil.getCookieValue(request,site.bean.SitePara.strCookieUserTheme,"stand");
java.util.ArrayList list=new java.util.ArrayList();
igec.site.base.bean.LongSysObj lo=new igec.site.base.bean.LongSysObj();
lo.setStrValue1(user.getStrUserId());
int flag=site.business.MebSoundBusiness.getMebSounds(list,lo,request);
%>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
<title> 会员办公室--<%=site.bean.SitePara.strWebTitle%> </title>
<script language="javascript" src="<%=site.bean.SitePara.strVirtualName%>/js/clear.jsp"></script>
<script language="JavaScript" src="<%=site.bean.SitePara.strVirtualName%>/js/public.js"></script>
<script language="javascript" src="<%=site.bean.SitePara.strVirtualName%>/js/xmlhttp.js"></script>
<link rel="stylesheet" rev="stylesheet" href="<%=strOfficeStyle%>/css/content.css" type="text/css" />
<link rel="stylesheet" rev="stylesheet" href="<%=strOfficeStyle%>/css/tree.css" type="text/css" />
<link rel="stylesheet" rev="stylesheet" href="<%=strOfficeStyle%>/css/mainframe.css" type="text/css" />
<link rel="stylesheet" rev="stylesheet" href="<%=strOfficeStyle%>/css/css.css" type="text/css" />
<script type="text/javascript" src="<%=site.bean.SitePara.strVirtualName%>/member/js/tree.jsp?baseurl=<%=strOfficeStyle%>"></script>
<link rel="shortcut icon" href="<%=site.bean.SitePara.strVirtualName%>/favicon.ico">
</head>
<script>
function openfb(){
window.open('<%=site.bean.SitePara.strVirtualName%>/member/stand/sound/soundfb.jsp?iid=<%=request.getParameter("iid")%>','发布','width=600, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, status=no');
}
function upWindow(id){
window.open('<%=site.bean.SitePara.strVirtualName%>/member/stand/sound/soundxg.jsp?iid=<%=strMenuId%>&id='+id,'newwindow','width=600,toolbar=no,menubar=no,scrollbars=yes, resizable=yes,location=no,status=no');
}
</script>
<body>
<%@ include file="../top.jsp"%>
<div id="screen">
<!--content-->
<div id="contentfloat">
<div id="content">
<script>
function deleteGQ(){
var strResult = getSelectRsFromForm("RSID",form1);
if("ERROR"==strResult){
alert("请选择待删除项目!");
return;
}
delRs("<%=site.bean.SitePara.strVirtualName%>/member/sound.do?opt=opd&id=" + strResult);
}
</script>
<form name="form1" id="form1">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top">
<div class="TableContenttop"><img src="images/bg_fd790d.gif" width="5" height="2" /></div>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="79%" class="TableContentTitle">管理音乐信息</td>
<td width="21%" class="TableContentTitle "><input type="button" name="btnfb" onclick="openfb()" value="上传音乐信息" /></td>
</tr>
<tr>
<td colspan="2" valign="middle">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class=tx_box>
<tr>
<td height="30" class=tx_title> 友情提示:</td>
</tr>
<tr>
<td class=tx_content>你可以点击全选按钮,删除本页的所有纪录,也可勾选信息前的 <input type="checkbox" name="checkbox" value="checkbox" /> ,进行有选择的删除,注意:删除操作不可恢复,请慎重操作。</span></td>
</tr>
</table></td>
</tr>
<tr>
<td height="50" colspan="2" valign="middle"><table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="20">
<script>
function checkall(){
var arr=document.getElementsByTagName("input");
for(var i=0;i<arr.length;i++){
if(arr[i].type=="checkbox" && arr[i].value!="checkbox"){
arr[i].checked=true;
}
}
}
</script>
<input type="button" value="全选" onclick="javascript:checkall();">
<input type="button" name="Submit2" onclick="javascript:deleteGQ()" value="删除" />
<img src="<%=strOfficeStyle%>/images/help.gif" width="16" height="16" style="display:none"/></td>
</tr>
</table></td>
</tr>
<tr>
<td height="110" colspan="2" valign="top">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class=list_lb_loca>
<tr>
<td width="5%" class="list_lb_title"> ID</td>
<td width="6%" align="center" class="list_lb_title">标题</td>
<td width="12%" align="center" class="list_lb_title">浏览量</td>
<td width="13%" align="center" class="list_lb_title">管理</td>
</tr>
<%
if(flag>=0&&list!=null&&list.size()>0)
for(int i=0;i<list.size();i++){
site.bean.MebSoundObj info=(site.bean.MebSoundObj)(list.get(i));
%>
<tr>
<td height="50" class=list_lb_content>
<input type="checkbox" name="RSID" value="<%=info.getId()%>" /><%=info.getId()%></td>
<td class=list_lb_content><strong><%=info.getTitle()%></strong></td>
<td class=list_lb_content><%=info.getHits()%></td>
<td class=list_lb_content>
<font onclick="javascript:upWindow('<%=info.getId()%>');" onmouseover="this.style.cursor='hand';">修改</font> </td>
</tr>
<% } %>
</table>
<center><%=lo.getStrValue15()%></center> </td>
</tr>
</table></td>
</tr>
</table>
</form>
</div>
</div>
<!--end/content-->
<!--left-->
<div id="leftmenu">
<!--menu-->
<div id="tree1"></div>
<!--end/menu-->
</div>
<!--end/left-->
</div>
<script language="javascript" src="<%=strOfficeStyle%>/menu.jsp?iid=<%=request.getParameter("iid")%>"></script>
<script type="text/javascript">treeInit();</script>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="2" bgcolor="#ff7b0f"></td>
</tr>
</table>
<%@ include file="../bot.jsp"%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -