<div class="grid" id="Div1" runat="server">
<!---信息显示-->
<div class="gridHeader" style="width: 100%;">
<div class="gridThead" style="position: relative;">
<table style="width: 99%;" id="Table2" runat="server">
<thead>
<tr>
<th style="width: 100px;">账号</th>
<th style="width: 120px;">姓名</th>
<th style="width: 120px;">性别</th>
<th style="width: 100px;">电话</th>
<th style="width: 100px;">地址</th>
</tr>
</thead>
</table>
</div>
</div>
<div class="gridScroller" style="width: 100%; overflow: auto">
<div class="gridTbody">
<table>
<tbody>
<asp:Repeater ID="Repeater2" runat="server">
<ItemTemplate>
<tr>
<td style="text-align: center; width: 100px;">
<%#Eval("CID")%>
<span class="id" style="display: none"><%#Eval("CID")%></span>
</td>
<td style="text-align: center; width: 120px;">
<%#Eval("CName")%>
</td>
<td style="text-align: center; width: 120px;">
<%#Eval("CSex")%>
</td>
<td style="text-align: center; width: 100px;">
<%#Eval("CTel")%>
</td>
<td style="text-align: center; width: 100px;">
<%#Eval("CAddr")%>
</td>
</tr>
</ItemTemplate>
</asp:Repeater>
</tbody>
</table>
</div>
</div>
<div class="panelBar">
<uc1:PartPages2 runat="server" ControlId="Repeater2" ID="PartPages2" />
</div>
</div>