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

SilverLight

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Admin_UserXianxi.aspx.cs" Inherits="Admin_UserXianxi" %>
  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.     <link href="../css/mycss.css" rel="stylesheet" type="text/css" />
  7. </head>
  8. <body>
  9.     <form id="form1" runat="server">
  10.     <div>
  11.         <asp:DetailsView ID="DetailsView1" runat="server" AutoGenerateRows="False" CellPadding="4"
  12.             ForeColor="#333333" GridLines="None" Height="50px" OnItemUpdating="DetailsView1_ItemUpdating"
  13.             OnModeChanging="DetailsView1_ModeChanging" Width="617px">
  14.             <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
  15.             <CommandRowStyle BackColor="#FFFFC0" Font-Bold="True" />
  16.             <RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
  17.             <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
  18.             <Fields>
  19.                 <asp:BoundField DataField="loginid" HeaderText="用户名" />
  20.                 <asp:BoundField DataField="loginpwd" HeaderText="登陆密码" />
  21.                 <asp:BoundField DataField="name" HeaderText="姓名" />
  22.                 <asp:BoundField DataField="address" HeaderText="地址" />
  23.                 <asp:BoundField DataField="Phone" HeaderText="电话" />
  24.                 <asp:BoundField DataField="id" HeaderText="用户编号" />
  25.                 <asp:BoundField DataField="mail" HeaderText="邮箱" />
  26.                 <asp:CommandField ShowEditButton="True" />
  27.             </Fields>
  28.             <FieldHeaderStyle BackColor="#FFFF99" Font-Bold="True" />
  29.             <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
  30.             <AlternatingRowStyle BackColor="White" />
  31.         </asp:DetailsView>
  32.     
  33.     </div>
  34.     </form>
  35. </body>
  36. </html>