The GridView still has the same "style" as the DataGrid from 1.1. So, in
short, no. Not that you can't do a bunch of work to make it sort of do this...
-Brock
DevelopMentor
http://staff.develop.com/ballen
> I have a 2.0 GridView
>
> <asp:GridView Runat="server" ID="GridView1"
> DataSourceID="AccessDataSource3" BackColor="Gainsboro"
> BorderColor="#336666" BorderWidth="3px" BorderStyle="Double"
> CellPadding="4" GridLines="Horizontal" AllowSorting="True"
> AutoGenerateEditButton="true" DataKeyNames="University"
> ForeColor="Black">
> <FooterStyle ForeColor="#333333" BackColor="White"></FooterStyle>
> <RowStyle ForeColor="#333333" BackColor="White"></RowStyle>
> <PagerStyle ForeColor="White" HorizontalAlign="Center"
> BackColor="#336666"></PagerStyle>
> <SelectedRowStyle ForeColor="White" Font-Bold="True"
> BackColor="#339966"></SelectedRowStyle>
> <HeaderStyle ForeColor="White" Font-Bold="True"
> BackColor="#336666"></HeaderStyle>
> </asp:GridView>
>
> I have it set as editable is there any way to set it toui
> automatically add a blank row that the user can then edit and add a
> data row
>