I have a DetailsView which is bound to a SqlDataSource. It also has an Edit CommandField which appears on the bottom of the autogenerated rows.
<asp:DetailsView ID="DetailsView1" runat="server"
ForeColor="#333333" GridLines="None" Height="50px" Width="150px"
DataSourceID="SqlDataSource2" Caption="System Parameters" CellSpacing="2">
<Fields>
<asp:CommandField ShowEditButton="True" />
</Fields>
</asp:DetailsView>
There are over 50 columns so I wouldn't like to add the bound fields manually.
How would that be possible to move the Edit button on top of the DetailsView (first row)?
Thanks,