1.aspx
<asp:GridView ID="gvTest" CssClass="GridViewStyle" runat="server" AutoGenerateColumns="False"
OnRowCommand="gvTest_RowCommand">
<RowStyle CssClass="GridViewRowStyle" />
<Columns>
<asp:BoundField DataField="ID" HeaderText="编号" />
<asp:BoundField DataField="Name" HeaderText="姓名" />
<asp:BoundField DataField="Sex" HeaderText="性别" />
<asp:BoundField DataField="Age" HeaderText="年龄" />
</Columns>
</asp:GridV