📄 manage.jsp
字号:
<%@ page contentType="text/html;charset=utf-8"%>
<%@ page import="cn.js.fan.util.*"%>
<%@ page import="cn.js.fan.web.*"%>
<%@ page import="cn.js.fan.db.*"%>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft FrontPage 4.0">
<TITLE>茶室管理</TITLE>
<LINK href="../../common.css" type=text/css rel=stylesheet>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<BODY leftmargin="0" topmargin="5">
<jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
<jsp:useBean id="privilege" scope="page" class="com.redmoon.chat.Privilege"/>
<%
if (!privilege.isUserPrivValid(request, "chat"))
{
out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
return;
}
%>
<%
String sql = "Select * from sq_chatroom";
RMConn rmconn = new RMConn(Global.defaultDB);
ResultIterator ri = rmconn.executeQuery(sql);
ResultRecord rr = null;
%>
<table align="center" border="0" cellPadding="2" cellSpacing="0" class="p9" height="54" width="98%">
<tr bgColor="#C4DAFF">
<td width="20%" height="28" align="center" bgcolor="#C4DAFF" class="stable">讨论室名称</td>
<td width="38%" height="28" align="center" bgcolor="#C4DAFF" class="stable">主 题</td>
<td width="10%" height="28" align="center" bgcolor="#C4DAFF" class="stable">满座人数</td>
<td width="23%" height="28" align="center" bgcolor="#C4DAFF" class="stable">
更改 </td>
</tr>
<%
int i = 0;
while (ri.hasNext()) {
rr = (ResultRecord)ri.next();%>
<tr align="middle" bgColor="#eeeeee" vAlign="center">
<form method="post" action="manage_do.jsp" id="formadd<%=i%>" name="formadd<%=i%>" LANGUAGE="javascript">
<td width="20%" height="24" class="stable">
<input id="id" name="id" type=hidden value=<%=rr.getInt("id")%>>
<input id="name" name="name" type=hidden value=<%=rr.getString("name")%>>
<%=rr.getString("name")%> </td>
<td width="38%" height="24" align="center" class="stable">
<INPUT class=stedit id=topic name=topic style="HEIGHT: 22px; WIDTH: 90%" value='<%=fchar.getNullStr(rr.getString("topic"))%>'> </td>
<td width="10%" height="24" align="center" class="stable">
<INPUT class=stedit id=peopleNum name=peopleNum style="HEIGHT: 22px; WIDTH: 40px" value='<%=rr.getInt("peopleNum")%>'> </td>
<td width="23%" height="24" align="center" class="stable">
<%
String checkm = "";
if (rr.getInt("playMusic")==1)
checkm = "checked";
%>
<input class=stedit id=playMusic2 name=playMusic2 value='1' type="checkbox" <%=checkm%> style="display:none">
<input name="submit1" type="submit" class="singleboarder" id="submit1" value="确定">
<a target="_blank" href="room_del.jsp?id=<%=rr.getInt("id")%>&name=<%=StrUtil.UrlEncode(rr.getString("name"))%>">删除</a>
<a href="emcee.jsp?room=<%=StrUtil.UrlEncode(rr.getString("name"))%>">主持</a></td>
</form>
</tr>
<%
i = i+1;
}
%>
</table>
<form target="" method="post" action="room_add.jsp" LANGUAGE="javascript">
<table align="center" border="0" cellPadding="2" cellSpacing="0" class="p9" width="98%">
<tr bgColor="#C4DAFF" align="center">
<td height="27" colspan="2" class="stable">添加讨论室</td>
</tr>
<tr bgColor="#eeeeee">
<td width="14%" align="middle" class="stable">房间名称</td>
<td width="86%" align="left" class="stable">
<INPUT type="text" id="name" name="name" style="width:80"> </td>
</tr>
<tr bgColor="#eeeeee">
<td width="14%" align="middle" class="stable">主 题</td>
<td width="86%" align="left" class="stable">
<INPUT type="text" id=topic name=topic style="width:400"> </td>
</tr>
<tr bgColor="#eeeeee">
<td width="14%" align="middle" class="stable">满座人数</td>
<td width="86%" align="left" class="stable">
<INPUT type="text" id=peopleNum name=peopleNum style="width:50" value="100">
<input type="hidden" id=playMusic name=playMusic value="1"> </td>
</tr>
<tr bgColor="#eeeeee">
<td height="33" colspan="2" align="middle" class="stable">
<INPUT type="submit" value="添加" id=submit2 name=submit2>
<INPUT type="reset" value="重写" id=reset1 name=reset1> </td>
</tr>
</table>
</form>
</BODY>
<SCRIPT LANGUAGE=javascript>
<!--
function dodelete(roomname)
{
window.open("deleteroom.asp?name="+roomname)
}
//-->
</SCRIPT>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -