manage_Job.aspx
上传用户:yawei0714
上传日期:2020-11-26
资源大小:1004k
文件大小:3k
源码类别:

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

开发平台:

HTML/CSS

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="manage_Job.aspx.cs" Inherits="Manage_manage_Job" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>无标题页</title>
  6.      <script language='javascript'>
  7.     function openPWD(i,width,height)
  8.    {
  9.       window.showModalDialog(i,"","dialogHeight: "+height+"px; dialogWidth: "+width+"px;dialogTop:px; dialogLeft:px; edge: Raised; center: Yes; help: No; resizable: No; status: No;scroll:No");
  10.    }
  11.     </script>
  12. </head>
  13. <body bgcolor="D2CBC5">
  14.     <form id="form1" runat="server">
  15.     <div style="text-align: center">
  16.         <strong><span style="color: #330099">
  17.         招聘信息管理<br />
  18.         </span></strong>
  19.         <table border="0" cellpadding="0" cellspacing="0" style="width: 499px">
  20.             <tr>
  21.                 <td style="width: 100px; text-align: center; height: 20px;">
  22.                 </td>
  23.                 <td style="width: 410px; text-align: center; height: 20px;">
  24.                     <asp:RadioButton ID="rdibtnS" runat="server" Text="所有信息" Width="97px" AutoPostBack="True" Checked="True" GroupName="info" OnCheckedChanged="rdibtnS_CheckedChanged" />
  25.                     <asp:RadioButton ID="rdibtnY" runat="server" Text="已审核信息" Width="104px" AutoPostBack="True" GroupName="info" OnCheckedChanged="rdibtnY_CheckedChanged" />&nbsp;
  26.                     <asp:RadioButton ID="rdibtnW" runat="server" Text="未审核信息" Width="101px" AutoPostBack="True" GroupName="info" OnCheckedChanged="rdibtnW_CheckedChanged" /></td>
  27.                 <td style="width: 100px; text-align: center; height: 20px;">
  28.                 </td>
  29.             </tr>
  30.         </table>
  31.         <asp:GridView ID="gvJob" runat="server" AllowPaging="True" AutoGenerateColumns="False"
  32.             Font-Size="10pt" OnRowDataBound="gvJob_RowDataBound" OnRowDeleting="gvJob_RowDeleting" OnPageIndexChanging="gvJob_PageIndexChanging" OnSelectedIndexChanging="gvJob_SelectedIndexChanging">
  33.             <Columns>
  34.                <asp:BoundField DataField="Job" HeaderText="招聘职位" />
  35.             <asp:BoundField DataField="Number" HeaderText="招聘人数" />
  36.             <asp:BoundField DataField="Specialty" HeaderText="要求专业" />
  37.             <asp:BoundField DataField="Knowledge" HeaderText="要求学历" />
  38.             <asp:BoundField DataField="FBDate" HeaderText="发布日期" />
  39.             <asp:TemplateField HeaderText="详细信息">
  40.                 <ItemTemplate>
  41.                      <a  href="#" onclick='openPWD("../jobInfo.aspx?ID=<%#Eval("JobID")%>",500,620)' >详细信息</a>
  42.                 </ItemTemplate>
  43.                 </asp:TemplateField>
  44.                 <asp:BoundField AccessibleHeaderText="sh" DataField="Auditing" HeaderText="状态" />
  45.                 <asp:CommandField HeaderText="删除" ShowDeleteButton="True">
  46.                     <ControlStyle Font-Underline="False" />
  47.                 </asp:CommandField>
  48.                 <asp:CommandField HeaderText="审核" SelectText="通过/取消" ShowSelectButton="True" />
  49.             </Columns>
  50.         </asp:GridView>
  51.     
  52.     </div>
  53.         <br />
  54.     </form>
  55. </body>
  56. </html>