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

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

开发平台:

HTML/CSS

  1. <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="jobList.aspx.cs" Inherits="jobList" Title="Untitled Page" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
  3.   <script language='javascript'>
  4.     function openPWD(i,width,height)
  5.    {
  6.       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");
  7.    }
  8.     </script>
  9.     <table align="left" border="0" cellpadding="0" cellspacing="0">
  10.         <tr>
  11.             <td align="left" style="width: 100px">
  12.                 <asp:Image ID="Image1" runat="server" ImageUrl="~/images/zhaopinxinxi.gif" /></td>
  13.         </tr>
  14.         <tr>
  15.             <td valign="top" align="center" style="width: 100px; ">
  16.     <asp:GridView ID="gvJob" runat="server" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanging="gvJob_PageIndexChanging" CssClass="huise1" Width="527px">
  17.         <Columns>
  18.             <asp:BoundField DataField="Job" HeaderText="招聘职位" />
  19.             <asp:BoundField DataField="Number" HeaderText="招聘人数" />
  20.             <asp:BoundField DataField="Specialty" HeaderText="要求专业" />
  21.             <asp:BoundField DataField="Knowledge" HeaderText="要求学历" />
  22.             <asp:BoundField DataField="FBDate" HeaderText="发布日期" />
  23.             <asp:TemplateField HeaderText="详细信息">
  24.                 <ItemTemplate>
  25.                      <a  href="#" onclick='openPWD("jobInfo.aspx?ID=<%#Eval("JobID")%>",500,610)' >详细信息</a>
  26.                 </ItemTemplate>
  27.             </asp:TemplateField>
  28.         </Columns>
  29.     </asp:GridView>
  30.             </td>
  31.         </tr>
  32.     </table>
  33. </asp:Content>