Gonggao.aspx
上传用户:whzhongbo
上传日期:2022-07-31
资源大小:1531k
文件大小:8k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

DOS

  1. <%@ Page Language="vb" AutoEventWireup="false" Codebehind="Gonggao.aspx.vb" Inherits="YDMusic.Gonggao"%>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  5. <title></title>
  6. <link href="/Css/Css.css" rel="stylesheet" type="text/css">
  7. <script language="javascript" src="/Js/Script.js"></script>
  8. <script language="javascript">
  9. <!--
  10. function AddRecord()
  11. {
  12. var WinWidth = 600;
  13. var WinHeight = 450;
  14. var WinLoca = (screen.width - WinWidth)/2;
  15. var TopLoca = (screen.height - WinHeight)/2;
  16. window.open("AddInvite.aspx","NewWindow","height=" + WinHeight + ",width=" + WinWidth + ",top=" + TopLoca + ",left=" + WinLoca + ",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
  17. }
  18. function Search()
  19. {
  20. var WinWidth = 600;
  21. var WinHeight = 350;
  22. var WinLoca = (screen.width - WinWidth)/2;
  23. var TopLoca = (screen.height - WinHeight)/2;
  24. window.open("SearchInvite.aspx","SearchWindow","height=" + WinHeight + ",width=" + WinWidth + ",top=" + TopLoca + ",left=" + WinLoca + ",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
  25. }
  26. function Edit()
  27. {
  28. var IsCheck = false;
  29. var InviteID = "";
  30. divCount = document.all.tags("input");
  31. for (i=0; i<divCount.length; i++)
  32. {
  33. obj = divCount(i);
  34. if (obj.checked)
  35. {
  36. IsCheck = true;
  37. InviteID = obj.value;
  38. }
  39. if (IsCheck && InviteID != "")
  40. {
  41. var WinWidth = 600;
  42. var WinHeight = 500;
  43. var WinLoca = (screen.width - WinWidth)/2;
  44. var TopLoca = (screen.height - WinHeight)/2;
  45. window.open("EditInvite.aspx?InviteID=" + InviteID,"EditWindow","height=" + WinHeight + ",width=" + WinWidth + ",top=" + TopLoca + ",left=" + WinLoca + ",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
  46. }
  47. else alert("请选择招聘信息")
  48. }
  49. function Edit2(v)
  50. {
  51. divCount = document.all.tags("tr");
  52. for (i=0; i<divCount.length; i++)
  53. {
  54. obj = divCount(i);
  55. if (obj.id.indexOf("trID") != -1)
  56. {
  57. obj.bgColor = "#FFFFFF";
  58. var id = obj.id.replace("trID","")
  59. if (id == v ) obj.bgColor = "#EEF2F7";
  60. }
  61. }
  62. divCount = document.all.tags("input");
  63. for (i=0; i<divCount.length; i++)
  64. {
  65. obj = divCount(i);
  66. if (obj.value==v) obj.checked = true;
  67. else obj.checked = false
  68. }
  69. var IsCheck = false;
  70. var InviteID = "";
  71. divCount = document.all.tags("input");
  72. for (i=0; i<divCount.length; i++)
  73. {
  74. obj = divCount(i);
  75. if (obj.checked)
  76. {
  77. IsCheck = true;
  78. InviteID = obj.value;
  79. }
  80. if (IsCheck && InviteID != "")
  81. {
  82. var WinWidth = 600;
  83. var WinHeight = 500;
  84. var WinLoca = (screen.width - WinWidth)/2;
  85. var TopLoca = (screen.height - WinHeight)/2;
  86. window.open("EditInvite.aspx?InviteID=" + InviteID,"EditWindow","height=" + WinHeight + ",width=" + WinWidth + ",top=" + TopLoca + ",left=" + WinLoca + ",,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
  87. }
  88. else alert("请选择招聘信息")
  89. }
  90. function Del()
  91. {
  92. var IsCheck = false;
  93. var InviteID = "";
  94. divCount = document.all.tags("input");
  95. for (i=0; i<divCount.length; i++)
  96. {
  97. obj = divCount(i);
  98. if (obj.checked)
  99. {
  100. IsCheck = true;
  101. InviteID = obj.value;
  102. }
  103. if (IsCheck && InviteID != "")
  104. {
  105. if (window.confirm('真的要删除吗?'))
  106. {
  107. window.open("DelInvite.aspx?InviteID=" + InviteID,"DelWindow","height=1,width=1,top=" + (screen.height-133)/2 +",left=" + (screen.width-115)/2 + ",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
  108. }
  109. }
  110. else alert("请选择招聘信息")
  111. }
  112. function SelectOne(v)
  113. {
  114. divCount = document.all.tags("tr");
  115. for (i=0; i<divCount.length; i++)
  116. {
  117. obj = divCount(i);
  118. if (obj.id.indexOf("trID") != -1)
  119. {
  120. obj.bgColor = "#FFFFFF";
  121. var id = obj.id.replace("trID","")
  122. if (id == v ) obj.bgColor = "#EEF2F7";
  123. }
  124. }
  125. divCount = document.all.tags("input");
  126. for (i=0; i<divCount.length; i++)
  127. {
  128. obj = divCount(i);
  129. if (obj.value==v) obj.checked = true;
  130. else obj.checked = false
  131. }
  132. }
  133. function ToPage(Page)
  134. {
  135. if (Page=="")
  136. {
  137. alert("请输入页数");
  138. GoPage.focus();
  139. return false;
  140. }
  141. var Url = QueryString("Page");
  142. location.href=Url + "Page=" + Page;
  143. }
  144. function Sort(Field)
  145. {
  146. var Url = QueryString("ParaName");
  147. if (getCookie("Sort")=="DESC")
  148. {
  149. location.href = Url + "ParaName=" + Field + " DESC";
  150. setCookie("Sort","ASC");
  151. }
  152. else
  153. {
  154. location.href = Url + "ParaName=" + Field + " ASC";
  155. setCookie("Sort","DESC");
  156. }
  157. }
  158. function QueryString(sName)
  159. {
  160. var Url = String(this.location);
  161. var iPos;
  162. var Para = "";
  163. iPos = Url.indexOf("?");
  164. if (iPos != -1)
  165. {
  166. var Url = Url.substr(iPos + 1, Url.length - iPos);
  167. var arra = Url.split("&");
  168. for(var i=0;i<arra.length;i++)
  169. {
  170. if (arra[i].indexOf(sName) == -1) Para = Para + arra[i] + "&";
  171. }
  172. }
  173. return "InviteInfor.aspx?" + Para;
  174. }
  175. //-->
  176. </script>
  177. </head>
  178. <body bgcolor="DFF0FA" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  179. <table border="0" width="100%" id="table1" cellpadding="5" cellspacing="0">
  180. <tr>
  181. <td>
  182. <table border="0" width="100%" cellspacing="0" cellpadding="0">
  183. <tr>
  184. <td width="27"><img border="0" src="/images/invite.gif" width="29" height="29"></td>
  185. <td>站内公告管理</td>
  186. </tr>
  187. </table>
  188. <table border="0" width="100%" cellspacing="0" cellpadding="0" background="/images/line1.gif">
  189. <tr>
  190. <td height="2"></td>
  191. </tr>
  192. </table>
  193. <table width="600" border="0" cellspacing="0" cellpadding="0">
  194. <tr>
  195. <td width="16" align="right"><img border="0" src="/images/add.gif" width="16" height="16"></td>
  196. <td width="40" valign="bottom"><a href="javascript:AddRecord();">新增</a></td>
  197. <td width="16" align="right"><img border="0" src="/images/edit.gif" width="16" height="16"></td>
  198. <td width="40" valign="bottom"><a href="javascript:Edit();">修改</a></td>
  199. <td width="16" align="right"><img border="0" src="/images/del.gif" width="16" height="16"></td>
  200. <td width="40" valign="bottom"><a href="javascript:Del();">删除</a></td>
  201. <td width="16" align="right"><img border="0" src="/images/refresh.gif" width="16" height="16"></td>
  202. <td width="40" valign="bottom"><a href="javascript:location.reload();">刷新</a></td>
  203. <td width="16" align="right"><img border="0" src="/images/search.gif" width="16" height="16"></td>
  204. <td width="40" valign="bottom"><a href="javascript:Search();">搜索</a></td>
  205. <td width="16" align="right"> </td>
  206. <td width="40" valign="bottom"> </td>
  207. <td width="16" align="right"> </td>
  208. <td width="65" valign="bottom"> </td>
  209. <td width="16" align="right"> </td>
  210. <td width="75" valign="bottom"> </td>
  211. <td width="16" align="right"> </td>
  212. <td width="40" valign="bottom"> </td>
  213. <td>&nbsp;&nbsp;</td>
  214. </tr>
  215. </table>
  216. <table border="0" id="table2" width="800" cellspacing="1" bgcolor="#C0C0C0" cellpadding="1">
  217. <tr>
  218. <td background="/images/head_bg.gif" height="23" align="center"><b>选择</b></td>
  219. <td background="/images/head_bg.gif" height="23" align="center"><b><font color="#003333">编号</font></b></td>
  220. <td background="/images/head_bg.gif" height="23" align="center"><b><font color="#003333">职位名称</font></b></td>
  221. <td background="/images/head_bg.gif" height="23" align="center"><b><font color="#003333">有效期限</font></b></td>
  222. <td background="/images/head_bg.gif" height="23" align="center"><b><font color="#003333">招聘状态</font></b></td>
  223. </tr>
  224. <tr id="trID" bgcolor="#FFFFFF" onclick="SelectOne();" ondblclick="Edit2();">
  225. <td height="18" align="center">
  226. <input type="radio" value="" name="CheckNo"></td>
  227. <td height="18" align="center"></td>
  228. <td height="18" align="center"></td>
  229. <td height="18" align="center"></td>
  230. <td height="18" align="center"></td>
  231. </tr>
  232. </table>
  233. <table border="0" width="100%" cellspacing="0" cellpadding="0">
  234. <tr>
  235. <td><asp:Label ID="Pager" Runat="SERVER" Visible="True"></asp:Label></td>
  236. </tr>
  237. </table>
  238. </td>
  239. </tr>
  240. </table>
  241. </body>
  242. </html>