123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="List.aspx.cs" Inherits="Com.Jpsoft.Hospital.Web.Module.rs_ygxx.List" %>
- <%@ Register Assembly="ZqWebControlLibrary" Namespace="FrameWork.WebControls" TagPrefix="cc1" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>无标题页</title>
- <link href='../../css/main.css' type="text/css" rel="Stylesheet" />
- </head>
- <body>
- <form id="form1" runat="server">
- <div id="main">
- <div class="main_title">
- <div class="mainborder1">
- </div>
- <div class="mainborder3">
- </div>
- <div class="mainborder2">
- <div class="pagetitle">
- <div style="float: left">
- 员工信息>>信息列表</div>
- <div style="float: right"></div>
- </div>
- </div>
- </div>
- <div class="main_body">
- <table border="0" cellpadding="0" cellspacing="1" width="100%">
- <tr>
- <td>
- <table border="0" cellpadding="0" cellspacing="1" width="100%">
- <tr>
- <td width="100px" align="right">
- 姓名:
- </td>
- <td width="20%">
- <asp:TextBox ID="txthzxm" runat="server" Width="154px"></asp:TextBox>
- </td>
- <td width="100px" align="right">
- 工号:
- </td>
- <td width="20%">
- <asp:TextBox ID="txtygdm" runat="server" Width="154px"></asp:TextBox>
- </td>
- <td width="100px" align="right">
- 电话:
- </td>
- <td width="20%">
- <asp:TextBox ID="txtMobile" runat="server" Width="154px"></asp:TextBox>
- </td>
- <td width="100px" align="right">
- 手机:
- </td>
- <td width="30%">
- <asp:TextBox ID="txtPhone" runat="server" Width="154px"></asp:TextBox>
- </td>
- <td>
- <asp:Button ID="Button1" runat="server" Text="查询" onclick="Button1_Click" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td>
- <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
- SkinID="gvskin" >
- <EmptyDataTemplate>
- <thead>
- <th>姓名</th>
- <th>工号</th>
- <th>性别</th>
- <th>出身年月</th>
- <th>职称</th>
- <th>籍贯</th>
- <th>电话</th>
- <th>手机</th>
- <th>所属科室</th>
- </thead>
- </EmptyDataTemplate>
- <Columns>
- <asp:BoundField DataField="name" HeaderText="姓名" />
- <asp:BoundField DataField="gh" HeaderText="工号" />
- <asp:BoundField DataField="sex" HeaderText="性别" />
- <asp:BoundField DataField="birth_date" HeaderText="出身年月" />
- <asp:BoundField DataField="zc_mc" HeaderText="职称" />
- <asp:BoundField DataField="jiguan" HeaderText="籍贯" />
- <asp:BoundField DataField="phone" HeaderText="电话" />
- <asp:BoundField DataField="mobile" HeaderText="手机" />
- <asp:BoundField DataField="ks_mc" HeaderText="所属科室" />
- </Columns>
- </asp:GridView>
- <cc1:AspNetPager ID="AspNetPager1" runat="server" PageSize="18" onpagechanged="AspNetPager1_PageChanged"
- >
- </cc1:AspNetPager>
- </td>
- </tr>
- </table>
- </div>
- <div class="main_foot">
- <div class="mainborder4">
- </div>
- <div class="mainborder6">
- </div>
- <div class="mainborder5">
- </div>
- </div>
- </div>
- </form>
- </body>
- </html>
|