userDel.aspx
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="userDel.aspx.cs" Inherits="manage_sysUser_userDel" %>
  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/css.css" rel="stylesheet" type="text/css" />
  7. </head>
  8. <body class="txt">
  9.     <form id="form1" runat="server">
  10.     <div>
  11.         <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Height="1px"
  12.             OnRowDeleting="GridView1_RowDeleting" Width="507px">
  13.             <Columns>
  14.                 <asp:BoundField DataField="id" HeaderText="ID" />
  15.                 <asp:BoundField DataField="name" HeaderText="用户名称" />
  16.                 <asp:BoundField DataField="password" HeaderText="用户密码" />
  17.                 <asp:BoundField DataField="addDate" HeaderText="创建日期" />
  18.                 <asp:CommandField ShowDeleteButton="True" />
  19.             </Columns>
  20.         </asp:GridView>
  21.     
  22.     </div>
  23.     </form>
  24. </body>
  25. </html>