List.aspx 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="List.aspx.cs" Inherits="Com.Jpsoft.Hospital.Web.Module.rs_ygxx.List" %>
  2. <%@ Register Assembly="ZqWebControlLibrary" Namespace="FrameWork.WebControls" TagPrefix="cc1" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" >
  5. <head runat="server">
  6. <title>无标题页</title>
  7. <link href='../../css/main.css' type="text/css" rel="Stylesheet" />
  8. </head>
  9. <body>
  10. <form id="form1" runat="server">
  11. <div id="main">
  12. <div class="main_title">
  13. <div class="mainborder1">
  14. </div>
  15. <div class="mainborder3">
  16. </div>
  17. <div class="mainborder2">
  18. <div class="pagetitle">
  19. <div style="float: left">
  20. 员工信息>>信息列表</div>
  21. <div style="float: right"></div>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="main_body">
  26. <table border="0" cellpadding="0" cellspacing="1" width="100%">
  27. <tr>
  28. <td>
  29. <table border="0" cellpadding="0" cellspacing="1" width="100%">
  30. <tr>
  31. <td width="100px" align="right">
  32. 姓名:
  33. </td>
  34. <td width="20%">
  35. <asp:TextBox ID="txthzxm" runat="server" Width="154px"></asp:TextBox>
  36. </td>
  37. <td width="100px" align="right">
  38. 工号:
  39. </td>
  40. <td width="20%">
  41. <asp:TextBox ID="txtygdm" runat="server" Width="154px"></asp:TextBox>
  42. </td>
  43. <td width="100px" align="right">
  44. 电话:
  45. </td>
  46. <td width="20%">
  47. <asp:TextBox ID="txtMobile" runat="server" Width="154px"></asp:TextBox>
  48. </td>
  49. <td width="100px" align="right">
  50. 手机:
  51. </td>
  52. <td width="30%">
  53. <asp:TextBox ID="txtPhone" runat="server" Width="154px"></asp:TextBox>
  54. </td>
  55. <td>
  56. <asp:Button ID="Button1" runat="server" Text="查询" onclick="Button1_Click" />
  57. </td>
  58. </tr>
  59. </table>
  60. </td>
  61. </tr>
  62. <tr>
  63. <td>
  64. <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
  65. SkinID="gvskin" >
  66. <EmptyDataTemplate>
  67. <thead>
  68. <th>姓名</th>
  69. <th>工号</th>
  70. <th>性别</th>
  71. <th>出身年月</th>
  72. <th>职称</th>
  73. <th>籍贯</th>
  74. <th>电话</th>
  75. <th>手机</th>
  76. <th>所属科室</th>
  77. </thead>
  78. </EmptyDataTemplate>
  79. <Columns>
  80. <asp:BoundField DataField="name" HeaderText="姓名" />
  81. <asp:BoundField DataField="gh" HeaderText="工号" />
  82. <asp:BoundField DataField="sex" HeaderText="性别" />
  83. <asp:BoundField DataField="birth_date" HeaderText="出身年月" />
  84. <asp:BoundField DataField="zc_mc" HeaderText="职称" />
  85. <asp:BoundField DataField="jiguan" HeaderText="籍贯" />
  86. <asp:BoundField DataField="phone" HeaderText="电话" />
  87. <asp:BoundField DataField="mobile" HeaderText="手机" />
  88. <asp:BoundField DataField="ks_mc" HeaderText="所属科室" />
  89. </Columns>
  90. </asp:GridView>
  91. <cc1:AspNetPager ID="AspNetPager1" runat="server" PageSize="18" onpagechanged="AspNetPager1_PageChanged"
  92. >
  93. </cc1:AspNetPager>
  94. </td>
  95. </tr>
  96. </table>
  97. </div>
  98. <div class="main_foot">
  99. <div class="mainborder4">
  100. </div>
  101. <div class="mainborder6">
  102. </div>
  103. <div class="mainborder5">
  104. </div>
  105. </div>
  106. </div>
  107. </form>
  108. </body>
  109. </html>