I am removing column from my GridView at one postback and binding it on second postback. After binding when page gets rendered it does not displays my GridView.
The same code segment was working when i was using ASP.NET 3.5 but in 4.0 it does not display the GridView. Can anyone please tell me that why this situation is happening?
Thanks in advance.
.aspx Code:
<asp:GridView>
<Columns>
<asp:BoundField HeaderText="StudName" DataField="Name" />
<asp:BoundField HeaderText="StudAddress" DataField="Address" />
<asp:BoundField HeaderText="StudPhNo" DataField="PhNo" />
</Columns>
</asp:GridView>
Server Side Code:
Button1_Click(object sender, EventArgs e)
{
//removes all columns ffrom grid.
for(int i=0;i<gridview1.Columns.Count;i++)
gridview1.Columns.RemoveAt(0);
}
Button2_Click(object sender, EventArgs e)
{
gridview1.DataSource = StudList;
//corrected name of grid
gridview1.DataBind();
}