62,243
社区成员




<asp:GridView ID="gv" runat="server" AutoGenerateColumns="False"
CellPadding="4" ForeColor="#333333" HorizontalAlign="Center" Width="100%"
BackColor="#CECECE" DataKeyNames="ID" onrowdeleting="gv_RowDeleting">
<AlternatingRowStyle BackColor="White" ForeColor="#284775"
HorizontalAlign="Center" />
<EditRowStyle BackColor="#999999" HorizontalAlign="Center" />
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="White" ForeColor="#333333" HorizontalAlign="Center" Font-Bold="false" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#E9E7E2" />
<SortedAscendingHeaderStyle BackColor="#506C8C" />
<SortedDescendingCellStyle BackColor="#FFFDF8" />
<SortedDescendingHeaderStyle BackColor="#6F8DAE" />
<Columns>
<asp:BoundField DataField="LoginName" HeaderText="账 号" ItemStyle-Font-Bold="false"/>
<asp:BoundField DataField="UserName" HeaderText="姓 名"/>
<asp:CheckBoxField DataField="Visible" HeaderText="是否显示" />
<asp:CheckBoxField DataField="Enabled" HeaderText="是否可用" />
<asp:CommandField HeaderText="清空密码" SelectText="清空密码" ShowSelectButton="True" />
<asp:CommandField DeleteText="删除账号" HeaderText="删除账号" ShowDeleteButton="True" />
</Columns>
</asp:GridView>