Hi friends...
How to open the next tabpanel from current tabpanel by using link button.Can anyone give me the reference.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanjeeb LenkaPosted Nov 25, 2013, 4:02 AM
protected void LinkButton1_Click(object sender, EventArgs e)
{
TabContainer1.ActiveTabIndex =0;//the tab index to open
}
selva kumarPosted Nov 25, 2013, 3:45 AM
protected void LinkButton1_Click(object sender, EventArgs e)
{
TabContainer1.ActiveTab = TabContainer1.Tabs[1];
}