UserStatue.aspx
上传用户:tjxpgg
上传日期:2017-05-14
资源大小:2244k
文件大小:2k
源码类别:

SilverLight

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="UserStatue.aspx.cs" Inherits="UserStatue" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>用户信息</title>
  6. </head>
  7. <body>
  8.     <form id="form1" runat="server">
  9.     <div>
  10.         <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="id"
  11.             OnRowDeleting="GridView1_RowDeleting" CellPadding="4" GridLines="Horizontal" BackColor="White" BorderColor="#336666" BorderStyle="Double" BorderWidth="0px">
  12.             <Columns>
  13.                 <asp:BoundField DataField="loginid" HeaderText="用户名" />
  14.                 <asp:BoundField DataField="name" HeaderText="姓名" />
  15.                 <asp:BoundField DataField="Address" HeaderText="地址" />
  16.                 <asp:BoundField DataField="Mail" HeaderText="邮箱" />
  17.                 <asp:CommandField DeleteText="&lt;div onclick=&quot;return confirm('是否确认删除?')&quot;&gt;删除&lt;/div&gt;"
  18.                     ShowDeleteButton="True" />
  19.                 <asp:TemplateField HeaderText="xianxi">
  20.                     <ItemTemplate>
  21.                         <a href='<%# "Admin_UserXianxi.aspx?id="+Eval("id") %>'>详细资料</a>
  22.                     </ItemTemplate>
  23.                 </asp:TemplateField>
  24.             </Columns>
  25.             <FooterStyle BackColor="White" ForeColor="#333333" />
  26.             <RowStyle BackColor="White" ForeColor="#333333" />
  27.             <SelectedRowStyle BackColor="#339966" Font-Bold="True" ForeColor="White" />
  28.             <PagerStyle BackColor="#336666" ForeColor="White" HorizontalAlign="Center" />
  29.             <HeaderStyle BackColor="#336666" Font-Bold="True" ForeColor="White" />
  30.         </asp:GridView>
  31.     
  32.     </div>
  33.     </form>
  34. </body>
  35. </html>