Hi,
I am using a tab control in my page. On change of Tab Index I want to refresh my GridView.
I am using the following code.
protected void Tab_ActiveTabChanged(object sender, EventArgs e)
{
if (Tab.ActiveTabIndex == 0)
{
FillGrid();
}
}
Still the Grid is not refreshing.
Thanks,
Rahul