<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server" >
        <div>
            <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" >
                <Columns>
                    <asp:BoundField DataField ="ID" HeaderText ="自动编号" ControlStyle-Width="150px" ControlStyle-Height ="30px" />
                    <asp:BoundField DataField="Name" HeaderText ="姓名" ControlStyle-Width="150px" ControlStyle-Height ="30px" />
                </Columns>
            </asp:GridView>
            <br />
            <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> &nbsp;&nbsp;
            <asp:Button ID="Button1" runat="server" Text ="查询" onclick="Button1_Click" />
            <asp:DataList ID="DataList1" runat="server">
                <ItemTemplate>
                    <asp:Label ID="Label1" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"Name") %>'></asp:Label>
                </ItemTemplate>
            </asp:DataList>
            <br />
            <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> &nbsp;&nbsp;
            <asp:Button ID="Button2" runat="server" Text ="添加" onclick="Button1_Click" />
        </div>
    </form>
</body>
</html>