I have the bellow Gridview
that pulls data from a stored procedure
that turns the data from vertical to horizontal with a pivot. I want to add a new row at a specific RowNumber 5
. This row will be filled only with black color.
<asp:GridView ID="GridView1" runat="server" OnRowCommand="GridView1_RowCommand" ShowHeader="true" CssClass="style3" ForeColor="White"
OnRowDataBound="GridView1_RowDataBound" DataSourceID="SqlDataSource1">
<EditRowStyle BorderColor="Black" ForeColor="Black" />
<Columns>
<asp:ButtonField CommandName="ColumnClick" Visible="false" />
</Columns>
</asp:GridView>