Admin_Jz_list.asp
上传用户:angela
上传日期:2022-05-11
资源大小:853k
文件大小:24k
源码类别:

外挂编程

开发平台:

ASP/ASPX

  1. <!--#include file="setup.asp"-->
  2. <!--#include file="check.asp"-->
  3. <%
  4. If Not CheckAdmin("JzList") Then
  5.     Server.Transfer("showerr.asp")
  6.     Response.End
  7. End If
  8. '=====================================================================
  9. ' 作者声明:转载请保留版权信息,鄙视不要脸的人
  10. '=====================================================================
  11. ' 程序名称:蓝宇网络发布系统
  12. ' 程序作者:蓝宇 QQ:18159079 ╲、随心゛ QQ:6821845
  13. ' 文件名称:Admin_Jz_list.asp
  14. ' 更新日期:2007-6-5
  15. '=====================================================================
  16. ' 联系方式:Tel:13203117383,QQ:18159079,hi.baidu.com/hezeyu
  17. ' 程序开发:蓝宇,╲、随心゛
  18. ' 官方网站:蓝宇网络(http://hi.baidu.com/hezeyu)
  19. '=====================================================================
  20. ' Copyright 2004-2007 蓝宇 - All Rights Reserved.
  21. '=====================================================================
  22. Dim menu, Rs_type, Sql_Type, Contact
  23. titlename="家族管理"
  24. Admin_header
  25. if request.QueryString("guiqi")="jztop" then'=============固顶家族
  26. dim id,act
  27. id=tee5.CheckStr(request("id"))
  28. act=tee5.CheckStr(request("act"))
  29. if id="" then
  30. response.write "<script>alert('变量参数不正确,请检查后再试');history.back()</script>"
  31. call CloseConn()
  32. response.end
  33. end if
  34. set rs = server.createobject("adodb.recordset")
  35. sql="select * from Gq_jzdata where id="&id
  36. rs.open sql,conn,1,3
  37. if rs.bof and rs.eof then
  38. rs.close
  39. response.write "<script>alert('无此记录');history.back()</script>"
  40. else
  41. select case act
  42. case "top"
  43. rs("top")=true
  44. rs("ulock")=true
  45. case "utop"
  46. rs("top")=false
  47. end select
  48. rs.update
  49. rs.close
  50. end if
  51. set rs=nothing
  52. conn.close
  53. set conn=nothing
  54. response.redirect request.ServerVariables("HTTP_REFERER")
  55. end if
  56. %>
  57. <%
  58. if request.QueryString("guiqi")="jzedit" then'=============修改家族
  59. set rs = server.createobject("adodb.recordset")
  60. dim name,qq,addr,peo,gameid,bulid,master,tel,web,top,ulock,hits
  61. name=tee5.CheckStr(request("name"))
  62. qq=tee5.CheckStr(request.form("qq"))
  63. addr=tee5.CheckStr(request.form("addr"))
  64. peo=tee5.CheckStr(request.form("peo"))
  65. gameid=tee5.CheckStr(request.form("gameid"))
  66. bulid=request.form("bulid")
  67. master=tee5.CheckStr(request.form("master"))
  68. tel=tee5.CheckStr(request.form("tel"))
  69. web=tee5.CheckStr(request.form("web"))
  70. hits=tee5.CheckStr(request.form("hits"))
  71. if request("top")<>1 then
  72. top=0
  73. else
  74. top=1
  75. end if
  76. if request("ulock")<>1 then
  77. ulock=0
  78. else
  79. ulock=1
  80. end if
  81. if Contact="" then Contact=master
  82. if tel="" then tel="无"
  83. if name="" or qq="" or gameid="" or addr="" or peo="" or  master="" or bulid="" then
  84. response.write "<script>alert('带*的选项必须填写或选择,请返回检查后再提交');history.back()</script>"
  85. call CloseConn()
  86. response.end
  87. end if
  88. call edit()
  89. call CloseConn()
  90. sub edit()
  91. sql="select * from Gq_jzdata where id="&request("id") 
  92. rs.open sql,conn,1,3
  93. if rs.bof and rs.eof then
  94. rs.close
  95. response.write "<script>alert('无此ID,请返回重新检查');history.back()</script>"
  96. else
  97. rs("Name")=Name
  98. rs("QQ")=QQ
  99. rs("Addr")=Addr
  100. rs("Peo")=Peo
  101. rs("GameID")=GameID
  102. rs("Bulid")=Bulid
  103. rs("Master")=Master
  104. rs("tel")=tel
  105. rs("web")=web
  106. rs("ulock")=ulock
  107. rs("hits")=hits
  108. rs("top")=top
  109.         rs("Limit")=2
  110. rs.update
  111. name=rs("name")
  112. response.write "<script>alert('"&name&"编辑成功~!');</script>"
  113. rs.close
  114. response.redirect "Admin_Jz_list.asp"
  115. end if
  116. end sub
  117. end if
  118. %>
  119. <%
  120. if request.QueryString("guiqi")="jzulock" then'=============审核家族
  121. dim sel
  122. sel=tee5.CheckStr(request.form("sel"))
  123. if sel="" then
  124. response.write "<script>alert('没有选择任何记录,不能操作');history.back()</script>"
  125. call CloseConn()
  126. response.end
  127. end if
  128. set rs = server.createobject("adodb.recordset")
  129. sel=split(sel,",")
  130. for i= 0 to ubound(sel)
  131. sql="select * from Gq_jzdata where id="&sel(i)
  132. rs.open sql,conn,1,3
  133. if rs.bof and rs.eof then
  134. rs.close
  135. else
  136. rs("ulock")=true
  137. rs.update
  138. rs.close
  139. end if
  140. next
  141. set rs=nothing
  142. conn.close
  143. set conn=nothing
  144. response.redirect request.ServerVariables("HTTP_REFERER")
  145. end if
  146. %>
  147. <%
  148. if request.QueryString("guiqi")="jzdel" then'=============删除家族
  149. dim delsel
  150. sel=tee5.CheckStr(request.form("sel"))
  151. if sel="" then
  152. response.write "<script>alert('没有选择任何记录,不能操作');history.back()</script>"
  153. call CloseConn()
  154. response.end
  155. end if
  156. set rs = server.createobject("adodb.recordset")
  157. sel=split(sel,",")
  158. for i= 0 to ubound(sel)
  159. sql="delete * from Gq_jzdata where id="&sel(i)
  160. conn.execute sql
  161. next
  162. set rs=nothing
  163. conn.close
  164. set conn=nothing
  165. response.redirect request.ServerVariables("HTTP_REFERER")
  166. end if
  167. %>
  168. <%
  169. if request.QueryString("guiqi")="utop" then'=============批量解固
  170. dim utopsel
  171. sel=tee5.CheckStr(request.form("sel"))
  172. if sel="" then
  173. response.write "<script>alert('没有选择任何记录,不能操作');history.back()</script>"
  174. call CloseConn()
  175. response.end
  176. end if
  177. set rs = server.createobject("adodb.recordset")
  178. sel=split(sel,",")
  179. for i= 0 to ubound(sel)
  180. sql="select * from Gq_jzdata where id="&sel(i)
  181. rs.open sql,conn,1,3
  182. if rs.bof and rs.eof then
  183. rs.close
  184. else
  185. rs("top")=0
  186. rs.update
  187. rs.close
  188. end if
  189. next
  190. set rs=nothing
  191. conn.close
  192. set conn=nothing
  193. response.redirect request.ServerVariables("HTTP_REFERER")
  194. end if
  195. %>
  196. <%
  197. if request.QueryString("guiqi")="ltop" then'=============批量固顶
  198. dim ltopsel
  199. sel=tee5.CheckStr(request.form("sel"))
  200. if sel="" then
  201. response.write "<script>alert('没有选择任何记录,不能操作');history.back()</script>"
  202. call CloseConn()
  203. response.end
  204. end if
  205. set rs = server.createobject("adodb.recordset")
  206. sel=split(sel,",")
  207. for i= 0 to ubound(sel)
  208. sql="select * from Gq_jzdata where id="&sel(i)
  209. rs.open sql,conn,1,3
  210. if rs.bof and rs.eof then
  211. rs.close
  212. else
  213. rs("top")=1
  214. rs("ulock")=true
  215. rs.update
  216. rs.close
  217. end if
  218. next
  219. set rs=nothing
  220. conn.close
  221. set conn=nothing
  222. response.redirect request.ServerVariables("HTTP_REFERER")
  223. end if
  224. %>
  225. <%
  226. if not isempty(request("page")) then
  227. currentPage=cint(request("page"))
  228. else
  229. currentPage=1
  230. end if
  231. set rs = server.createobject("adodb.recordset")
  232. menu=request("menu")
  233. %>
  234. <script>
  235. function chkid()
  236. {
  237. document.formguiqi.action="admin_jz_list.asp?guiqi=jzdel";
  238. document.formguiqi.submit()
  239. }
  240. </script>
  241. <table width=98% align="center" border="0" cellspacing="1" cellpadding="2" class="tableBorder">
  242. <tr> 
  243. <th>家族管理操作</th>
  244. </tr>
  245. <tr>
  246. <td class=tablerow1><b>家族分类:</b><%
  247. Set Rs_type = Server.CreateObject("ADODB.RecordSet")
  248. Sql_Type="select * from Gq_gametype order by orderid"
  249. rs_type.open sql_type,conn,1,1
  250. if rs_type.eof and rs_type.bof then
  251. response.Write "没有分类,请到后台添加!"
  252. else
  253. do while not rs_type.EOF
  254. response.Write "<a href=admin_Jz_list.asp?menu="&rs_type("id")&">"
  255. if cint(rs_type("id"))=cint(menu) then
  256. response.Write "<font color=red>"&rs_type("game")&"</font>"
  257. else
  258. response.Write rs_type("game")
  259. end if
  260. response.write "</a> | "
  261. rs_type.movenext
  262. loop
  263. rs_type.close
  264. end if
  265. %>
  266. <br><b>管理选项:</b><a href="admin_Jz_list.asp">家族列表</a> | <a href="admin_jz_list.asp?action=jztop">固顶家族</a> | <a href="admin_jz_list.asp?action=jzulock">家族审核</a></td>
  267. </tr>
  268. </table>
  269. <br>
  270. <%if request.querystring("action")="" then
  271. Dim tablestyle
  272. Dim maxperpage,CurrentPage,Pcount,totalrec,totalnumber
  273. maxperpage = AdminPage
  274. totalrec = 0
  275. Pcount = 1
  276. CurrentPage = tee5.ChkNumeric(Request("page"))
  277. If CurrentPage = 0 Then CurrentPage = 1
  278. Response.Write "<script src=""/js/showpage.js"" type=""text/javascript""></script>" & vbCrLf
  279. %>
  280. <table width=98% align="center" border="0" cellspacing="1" cellpadding="2" class="tableBorder">
  281. <form method=post name=formguiqi action=admin_Jz_list.asp?guiqi=ltop>
  282. <tr align="center">
  283. <th width="4%">选择</th>
  284. <th width="12%">所在游戏</th>
  285. <th width="*">名称</th>
  286. <th width="15%">QQ群号</th>
  287. <th width="8%">人气</th>
  288. <th width="12%">固顶状态</th>
  289. <th width="10%">验证</th>
  290. <th width="15%">操作</th>
  291. </tr>   
  292. <% 
  293. if menu<>"" then
  294. sql="select Gq_jzdata.id,Gq_jzdata.name,Gq_jzdata.qq,Gq_jzdata.master,Gq_jzdata.bulid,Gq_jzdata.peo,Gq_jzdata.addr,Gq_jzdata.web,Gq_jzdata.hits,Gq_jzdata.addtime,Gq_jzdata.tel,Gq_jzdata.gameid,Gq_jzdata.ulock,Gq_jzdata.top,Gq_gametype.game FROM Gq_jzdata,Gq_gametype where Gq_jzdata.gameid=Gq_gametype.id and Gq_jzdata.gameid="&menu&" order by addtime desc" 
  295. else
  296. sql="select Gq_jzdata.id,Gq_jzdata.name,Gq_jzdata.qq,Gq_jzdata.master,Gq_jzdata.bulid,Gq_jzdata.peo,Gq_jzdata.addr,Gq_jzdata.web,Gq_jzdata.hits,Gq_jzdata.addtime,Gq_jzdata.tel,Gq_jzdata.gameid,Gq_jzdata.ulock,Gq_jzdata.top,Gq_gametype.game FROM Gq_jzdata,Gq_gametype where Gq_jzdata.gameid=Gq_gametype.id order by addtime desc" 
  297. end if
  298. rs.open sql,conn,1,1 
  299. if rs.eof and rs.bof then 
  300. response.write "<tr><td align='center' class=tablerow1 colspan='8'>当前还没有任何家族信息!</td>" 
  301. else
  302. totalrec = Rs.RecordCount
  303. Pcount = CLng(totalrec / maxperpage)  '得到总页数
  304. If Pcount < totalrec / maxperpage Then Pcount = Pcount + 1
  305. If CurrentPage < 1 Then CurrentPage = 1
  306. If CurrentPage > Pcount Then CurrentPage = Pcount
  307. Rs.PageSize = maxperpage
  308. Rs.AbsolutePage = CurrentPage
  309. i = 0
  310. Do While Not Rs.EOF And i < maxperpage
  311. If Not Response.IsClientConnected Then ResponseEnd
  312. %>
  313. <tr>
  314. <td align="center" class=tablerow1><input name="sel" type="checkbox" id="sel" value="<%=rs("id")%>"></td>
  315. <td align="center" class=tablerow1><%=rs("game")%></td>
  316. <td align="center" class=tablerow1><a href="###" onClick="window.open('admin_Jz_display.asp?id=<%=rs("id")%>','info','scrollbars=yes,resizable=no,width=520,height=460,menubar=no,left=0')" title="查看详细内容"><%=rs("name")%></a></td>
  317. <td align="center" class=tablerow1><%=rs("qq")%></td>
  318. <td align="center" class=tablerow1><%=rs("hits")%></td>
  319. <td align="center" class=tablerow1><%if rs("top")=true then response.write "<font color=#0000FF>固顶中</font>" else response.write "<font color=#CCCCCC>未固顶</font>" end if%></td>
  320. <td align="center" class=tablerow1><%if rs("ulock")=true then response.write "<font color=#CCCCCC>通过</font>" else response.write "<font color=red>等待</font>" end if%></td>
  321. <td align="center" class=tablerow1><%if rs("top")=false then response.write "<a href=admin_Jz_list.asp?guiqi=jztop&id="&rs("id")&"&act=top>固顶</a>" else response.write "<a href=admin_Jz_list.asp?guiqi=jztop&id="&rs("id")&"&act=utop><font color=red>解固</font></a>" end if%> | <a href=admin_Jz_list.asp?action=jzedit&id=<%=rs("id")%>><font color="#008000">编辑</font></a></td>
  322. </tr>
  323. <%
  324. Rs.movenext
  325. i = i + 1
  326. If i >= maxperpage Then Exit Do
  327. Loop
  328. End If
  329. Rs.Close:Set Rs = Nothing
  330. %>
  331. <tr>
  332. <td class=tablerow1 colspan="8"><B>操作选项:<B> 
  333. <input class=Button type=button value='全选' onClick="CheckAll(this.form)"><input class=Button type=button value='撤消' onClick="CheckCel(this.form)"><input class=Button type=button value='反选' onClick="CheckSel(this.form)"> 
  334. <input class=Button type=submit value=批量固顶> <input class=Button type=button value=批量删除 onclick=chkid()>
  335. </td>
  336. </tr>
  337. </form>
  338. <tr>
  339. <td <%=RightClass%> colspan="8"><%tee5.ShowListPage CurrentPage,Pcount,totalrec,maxperpage,"","家族管理"%></td>
  340. </tr>
  341. </table>
  342. <%
  343. end if
  344. if request.querystring("action")="jzulock" then%>
  345. <table width=98% align="center" border="0" cellspacing="1" cellpadding="2" class="tableBorder">
  346. <form method=post name=formguiqi action=admin_Jz_list.asp?guiqi=jzulock>
  347. <tr>
  348. <th width="4%">选择</th>
  349. <th width="10%">所在游戏</th>
  350. <th width="18%">名称</th>
  351. <th width="15%">族长</th>
  352. <th width="10%">QQ群</th>
  353. <th width="*">发布时间</th>
  354. <th width="7%">主页</th>
  355. <th width="15%">操作</th>
  356. </tr>
  357. <% 
  358. sql="select Gq_jzdata.id,Gq_jzdata.name,Gq_jzdata.qq,Gq_jzdata.master,Gq_jzdata.bulid,Gq_jzdata.peo,Gq_jzdata.addr,Gq_jzdata.web,Gq_jzdata.hits,Gq_jzdata.addtime,Gq_jzdata.tel,Gq_jzdata.gameid,Gq_jzdata.ulock,Gq_jzdata.top,Gq_gametype.game FROM Gq_jzdata,Gq_gametype where Gq_jzdata.gameid=Gq_gametype.id and Gq_jzdata.ulock=0 order by addtime desc"
  359. rs.open sql,conn,1,1 
  360. if rs.eof and rs.bof then
  361. response.write "<tr><td align='center' class=tablerow1 colspan='8'>当前没有未通过审核的家族信息!</td></tr>" 
  362. else 
  363. do while not rs.eof
  364. %>
  365. <tr>
  366. <td align="center" class=tablerow1><input name="sel" type="checkbox" id="sel" value="<%=rs("id")%>"></td>
  367. <td align="center" class=tablerow1><%=rs("game")%></td>
  368. <td align="center" class=tablerow1><a href="###" onClick="window.open('admin_Jz_display.asp?id=<%=rs("id")%>','info','scrollbars=yes,resizable=no,width=520,height=460,menubar=no,left=0')" title="查看详细内容"><%=rs("name")%></a></td>
  369. <td align="center" class=tablerow1><%=rs("master")%></td>
  370. <td align="center" class=tablerow1><%=rs("qq")%></td>
  371. <td align="center" class=tablerow1><%=rs("addtime")%></td>
  372. <td align="center" class=tablerow1><%if rs("web")="" or rs("web")="无" or rs("web")="http://" then response.write "未知" else response.write "<a href="&rs("web")&" target=_blank><FONT color=#0000FF>查看</FONT></a>" end if%></td>
  373. <td align="center" class=tablerow1><%if rs("top")=false then response.write "<a href=admin_Jz_top.asp?guiqi=jztop&id="&rs("id")&"&act=top>固顶</a>" else response.write "<a href=admin_Jz_list.asp?guiqi=jztop&id="&rs("id")&"&act=utop><font color=red>解固</font></a>" end if%> | <a href=admin_Jz_list.asp?action=jzedit&id=<%=rs("id")%>><font color="#008000">编辑</font></a></td>
  374. </tr>
  375. <%
  376. rs.movenext
  377. loop
  378. rs.close
  379. end if
  380. %>
  381. <tr>
  382. <td class=tablerow1 colspan="8"><B>操作选项:<B> <input class=Button type=button value='全选' onClick="CheckAll(this.form)"><input class=Button type=button value='撤消' onClick="CheckCel(this.form)"><input class=Button type=button value='反选' onClick="CheckSel(this.form)"> 
  383. <input class=Button type=submit value=批量审核> <input class=Button type=button value=批量删除 onclick=chkid()>
  384. </td>
  385. </tr>
  386. </form>
  387. </table>
  388. <%end if
  389. if request.querystring("action")="jztop" then%>
  390. <table width=98% align="center" border="0" cellspacing="1" cellpadding="2" class="tableBorder">
  391. <form method=post name=formguiqi action=admin_Jz_list.asp?guiqi=utop>
  392. <tr>
  393. <th width="4%">选择</th>
  394. <th width="12%">所在游戏</th>
  395. <th width="*">名称</th>
  396. <th width="20%">族长</th>
  397. <th width="15%">QQ群</th>
  398. <th width="8%">人气</th>
  399. <th width="15%" colspan="2">操作</th>
  400. </tr>
  401. <% 
  402. sql="select Gq_jzdata.id,Gq_jzdata.name,Gq_jzdata.qq,Gq_jzdata.master,Gq_jzdata.bulid,Gq_jzdata.peo,Gq_jzdata.addr,Gq_jzdata.web,Gq_jzdata.hits,Gq_jzdata.addtime,Gq_jzdata.tel,Gq_jzdata.gameid,Gq_jzdata.ulock,Gq_jzdata.top,Gq_gametype.game FROM Gq_jzdata,Gq_gametype where Gq_jzdata.gameid=Gq_gametype.id and Gq_jzdata.top=true order by addtime desc"
  403. rs.open sql,conn,1,1 
  404. if rs.eof and rs.bof then 
  405. response.write "<tr><td align='center' class=tablerow1 colspan='8'>当前没有未固定的家族信息!</td></tr>" 
  406. else 
  407. do while not rs.eof
  408. %>
  409. <tr>
  410. <td align="center" class=tablerow1><input name="sel" type="checkbox" id="sel" value="<%=rs("id")%>"></td>
  411. <td align="center" class=tablerow1><%=rs("game")%></td>
  412. <td align="center" class=tablerow1><a href="###" onClick="window.open('admin_Jz_display.asp?id=<%=rs("id")%>','info','scrollbars=yes,resizable=no,width=520,height=460,menubar=no,left=0')" title="查看详细内容"><%=rs("name")%></a></td>
  413. <td align="center" class=tablerow1><%=rs("master")%></td>
  414. <td align="center" class=tablerow1><%=rs("qq")%></td>
  415. <td align="center" class=tablerow1><%=rs("hits")%></td>
  416. <td align="center" class=tablerow1><%if rs("top")=false then response.write "<a href=admin_Jz_top.asp?guiqi=jztop&id="&rs("id")&"&act=top>固顶</a>" else response.write "<a href=admin_Jz_list.asp?guiqi=jztop&id="&rs("id")&"&act=utop><font color=red>解固</font></a>" end if%> | <a href=admin_Jz_list.asp?action=jzedit&id=<%=rs("id")%>><font color="#008000">编辑</font></a></td>
  417. </tr>
  418. <%
  419. rs.movenext
  420. loop
  421. rs.close
  422. end if
  423. %>
  424. <tr>
  425. <td class=tablerow1 colspan="8"><B>操作选项:<B> <input class=Button type=button value='全选' onClick="CheckAll(this.form)"><input class=Button type=button value='撤消' onClick="CheckCel(this.form)"><input class=Button type=button value='反选' onClick="CheckSel(this.form)"> 
  426. <input class=Button type=submit value=批量解固> <input class=Button type=button value=批量删除 onclick=chkid()>
  427. </td>
  428. </tr>
  429. </form>
  430. </table>
  431. <%end if%>
  432. <%
  433. if request.querystring("action")="jzedit" then
  434. dim jzid
  435. id=tee5.CheckStr(request("id"))
  436. if id="" or (not isnumeric(id)) then
  437. response.write "<script>alert('参数不正确!!!');window.close()</script>"
  438. response.end
  439. end if
  440. set rs = server.createobject("adodb.recordset")
  441. sql="SELECT Gq_jzdata.id,Gq_jzdata.name,Gq_jzdata.qq,Gq_jzdata.master,Gq_jzdata.bulid,Gq_jzdata.peo,Gq_jzdata.addr,Gq_jzdata.web,Gq_jzdata.hits,Gq_jzdata.addtime,Gq_jzdata.tel,Gq_jzdata.gameid,Gq_jzdata.top,Gq_jzdata.ulock,Gq_gametype.game FROM Gq_jzdata,Gq_gametype where Gq_jzdata.gameid=Gq_gametype.id and Gq_jzdata.id="&id
  442. rs.open sql,conn,1,1 
  443. if rs.bof and rs.eof then 
  444. rs.close
  445. response.write "<script>alert('无此数据!!!');window.close()</script>"
  446. response.end
  447. else
  448. end if
  449. %>
  450. <SCRIPT language=JavaScript>
  451. function check(){
  452. if(document.form1.name.value=="")
  453.   {
  454. alert("家族名称不能为空!");
  455. document.form1.name.focus();
  456. return false;
  457. }
  458. if(document.form1.QQ.value=="")
  459. {
  460. alert("家族QQ群不能为空!");
  461. document.form1.qq.focus();
  462. return false;
  463. }
  464. if(document.form1.gameid.value=="")
  465. {
  466. alert("请选择家族所在的游戏!");
  467. document.form1.gameid.focus();
  468. return false;
  469. }
  470. if(document.form1.Peo.value=="")
  471. {
  472. alert("请填写家族人数!");
  473. document.form1.Peo.focus();
  474. return false;
  475. }
  476. if(document.form1.master.value=="")
  477. {
  478. alert("请填写家族族长名字!");
  479. document.form1.master.focus();
  480. return false;
  481. }
  482. if(document.form1.addr.value=="")
  483. {
  484. alert("请选择家族所在地区!");
  485. document.form1.addr.focus();
  486. return false;
  487. }
  488. if(document.form1.Bulid.value=="")
  489. {
  490. alert("请填写家族创建的具体时间!");
  491. document.form1.bulid.focus();
  492. return false;
  493. }
  494. if(document.form1.about.value=="")
  495. {
  496. alert("家族简介不能为空!");
  497. document.form1.about.focus();
  498. return false;
  499. }
  500. }
  501. </SCRIPT>
  502. <table width=98% align="center" border="0" cellspacing="1" cellpadding="2" class="tableBorder">
  503. <FORM name=form1 onsubmit="return check()" action=admin_jz_list.asp?guiqi=jzedit method=post>
  504. <tr> 
  505. <th colspan="2">家族管理--修改家族</th>
  506. </tr>
  507. <tr>
  508. <td width="12%" align="right" class="TableRow1">家族名称:</td>
  509. <td class="TableRow1"><INPUT name=name value="<%=rs("name")%>" maxLength=14><FONT color=#c0c0c0>(<%=rs("addtime")%>发布)</FONT></td>
  510. </tr>
  511. <tr>
  512. <td width="12%" align="right" class="TableRow1">家族QQ群:</td>
  513. <td class="TableRow1"><INPUT name=qq id="qq" value="<%=rs("QQ")%>" maxLength=14></td>
  514. </tr>
  515. <tr>
  516. <td width="12%" align="right" class="TableRow1">所在游戏:</td>
  517. <td class="TableRow1">
  518. <%
  519. Set Rs_type = Server.CreateObject("ADODB.RecordSet")
  520. Sql_Type="select * from Gq_gametype order by orderid"
  521. rs_type.open sql_type,conn,1,1
  522. %>
  523. <SELECT id=gameid size=1 name=gameid>
  524. <%
  525. if rs_type.eof and rs_type.bof then
  526. response.Write "<option value= selected>请添加游戏分类</option>"
  527. else
  528. do while not rs_type.EOF
  529. if rs_type("id")=rs("gameid") then
  530. response.Write "<option value="&rs_type("id")&" selected>"&rs_type("game")&"</option>"
  531. else
  532. response.Write "<option value="&rs_type("id")&">"&rs_type("game")&"</option>"
  533. end if
  534. rs_type.movenext
  535. loop
  536. rs_type.close
  537. end if
  538. %></SELECT></td>
  539. </tr>
  540. <tr>
  541. <td width="12%" align="right" class="TableRow1">网络线路:</td>
  542. <td class="TableRow1"><INPUT name=peo id="peo" value="<%=rs("peo")%>" maxLength=14></td>
  543. </tr>
  544. <tr>
  545. <td width="12%" align="right" class="TableRow1">家族族长:</td>
  546. <td class="TableRow1"><INPUT name=master id="master" value="<%=rs("master")%>" maxLength=14></td>
  547. </tr>
  548. <tr>
  549. <td width="12%" align="right" class="TableRow1">创建日期:</td>
  550. <td class="TableRow1"><INPUT name=bulid id="bulid" value="<%=rs("bulid")%>" maxLength=19></td>
  551. </tr>
  552. <tr>
  553. <td width="12%" align="right" class="TableRow1">所在地区:</td>
  554. <td class="TableRow1">
  555.           <SELECT id=addr size=1 name=addr>
  556.           <OPTION value=北京 <%if rs("addr")="北京" then response.write "selected" end if%>>北京</OPTION>
  557.           <OPTION value=上海 <%if rs("addr")="上海" then response.write "selected" end if%>>上海</OPTION>
  558.           <OPTION value=重庆 <%if rs("addr")="重庆" then response.write "selected" end if%>>重庆</OPTION>
  559.           <OPTION value=天津 <%if rs("addr")="天津" then response.write "selected" end if%>>天津</OPTION>
  560.           <OPTION value=广东 <%if rs("addr")="广东" then response.write "selected" end if%>>广东</OPTION>
  561.           <OPTION value=河北 <%if rs("addr")="河北" then response.write "selected" end if%>>河北</OPTION>
  562.           <OPTION value=山西 <%if rs("addr")="山西" then response.write "selected" end if%>>山西</OPTION>
  563.           <OPTION value=内蒙古 <%if rs("addr")="内蒙古" then response.write "selected" end if%>>内蒙古</OPTION>
  564.           <OPTION value=辽宁 <%if rs("addr")="辽宁" then response.write "selected" end if%>>辽宁</OPTION>
  565.           <OPTION value=吉林 <%if rs("addr")="吉林" then response.write "selected" end if%>>吉林</OPTION>
  566.           <OPTION value=黑龙江 <%if rs("addr")="黑龙江" then response.write "selected" end if%>>黑龙江</OPTION>
  567.           <OPTION value=江苏 <%if rs("addr")="江苏" then response.write "selected" end if%>>江苏</OPTION>
  568.           <OPTION value=浙江 <%if rs("addr")="浙江" then response.write "selected" end if%>>浙江</OPTION>
  569.           <OPTION value=安徽 <%if rs("addr")="安徽" then response.write "selected" end if%>>安徽</OPTION>
  570.           <OPTION value=福建 <%if rs("addr")="福建" then response.write "selected" end if%>>福建</OPTION>
  571.           <OPTION value=江西 <%if rs("addr")="江西" then response.write "selected" end if%>>江西</OPTION>
  572.           <OPTION value=山东 <%if rs("addr")="山东" then response.write "selected" end if%>>山东</OPTION>
  573.           <OPTION value=河南 <%if rs("addr")="河南" then response.write "selected" end if%>>河南</OPTION>
  574.           <OPTION value=湖北 <%if rs("addr")="湖北" then response.write "selected" end if%>>湖北</OPTION>
  575.           <OPTION value=湖南 <%if rs("addr")="湖南" then response.write "selected" end if%>>湖南</OPTION>
  576.           <OPTION value=广西 <%if rs("addr")="广西" then response.write "selected" end if%>>广西</OPTION>
  577.           <OPTION value=海南 <%if rs("addr")="海南" then response.write "selected" end if%>>海南</OPTION>
  578.           <OPTION value=四川 <%if rs("addr")="四川" then response.write "selected" end if%>>四川</OPTION>
  579.           <OPTION value=贵州 <%if rs("addr")="贵州" then response.write "selected" end if%>>贵州</OPTION>
  580.           <OPTION value=云南 <%if rs("addr")="云南" then response.write "selected" end if%>>云南</OPTION>
  581.           <OPTION value=西藏 <%if rs("addr")="西藏" then response.write "selected" end if%>>西藏</OPTION>
  582.           <OPTION value=陕西 <%if rs("addr")="陕西" then response.write "selected" end if%>>陕西</OPTION>
  583.           <OPTION value=甘肃 <%if rs("addr")="甘肃" then response.write "selected" end if%>>甘肃</OPTION>
  584.           <OPTION value=青海 <%if rs("addr")="青海" then response.write "selected" end if%>>青海</OPTION>
  585.           <OPTION value=宁夏 <%if rs("addr")="宁夏" then response.write "selected" end if%>>宁夏</OPTION>
  586.           <OPTION value=新疆 <%if rs("addr")="新疆" then response.write "selected" end if%>>新疆</OPTION>
  587.           <OPTION value=香港 <%if rs("addr")="香港" then response.write "selected" end if%>>香港</OPTION>
  588.           <OPTION value=澳门 <%if rs("addr")="澳门" then response.write "selected" end if%>>澳门</OPTION>
  589.           <OPTION value=台湾 <%if rs("addr")="台湾" then response.write "selected" end if%>>台湾</OPTION>
  590.           <OPTION value=国外 <%if rs("addr")="国外" then response.write "selected" end if%>>国外</OPTION>
  591.         </SELECT>
  592. </td>
  593. </tr>
  594. <tr>
  595. <td width="12%" align="right" class="TableRow1">游戏版本:</td>
  596. <td class="TableRow1"><INPUT name=tel id="tel" value="<%=rs("tel")%>" maxLength=50></td>
  597. </tr>
  598. <tr>
  599. <td width="12%" align="right" class="TableRow1">家族主页:</td>
  600. <td class="TableRow1"><INPUT name=web id="web" value="<%=rs("web")%>" size="36" maxLength=100></td>
  601. </tr>
  602. <tr>
  603. <td width="12%" align="right" class="TableRow1">点击率:</td>
  604. <td class="TableRow1">
  605. <INPUT name=hits id="hits" value="<%=rs("hits")%>" size="10" maxLength=20>
  606. &nbsp;&nbsp;审核状态<input name="ulock" type="checkbox" id="ulock" value="1" <%if rs("ulock")=true then response.write "checked"%>>
  607. &nbsp;&nbsp;固顶状态<input name="top" type="checkbox" id="top" value="1" <%if rs("top")=true then response.write "checked"%>>
  608. </td>
  609. </tr>
  610. <tr>
  611. <td class="TableRow1" colspan="2" height="30" align="center"><input name="id" type="hidden" id="id" value="<%=rs("id")%>"><INPUT class=Button type=submit value=" 编 辑 " name=submit2>&nbsp;&nbsp;&nbsp;&nbsp;<INPUT class=Button type=reset value=" 清 除 " name=cmdcancel></td>
  612. </tr>
  613. </form>
  614. </table>
  615. <%end if
  616. Admin_footer
  617. CloseConn
  618. %>