Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Ajax tab container to create tabs in the master page. There are four tabs. when click on each tab, it reidrects to another page without post back, all these pages are included in the content place holder. I used javascript to attain that. In each tab panel, i created onclientclick which calls a javascript function that redirects the pages. Now the issue is, even though the page is getting redirected properly, the active tab is always the first one. when i click the second tab, the contents in the tab panel 2 is shown for 1 second and goes back to the contents in the tabpanel1. But still, it shows the corresponding page(page2) in the content place holder.I have tried Tabcontainer.ActivetabIndex also, but still it remains the same. Any idea what is wrong here.. it will be a geat help if someone can figure this out.

function tab0() {
    window.location = "Page1.aspx";
}

function tab1() {
    window.location = "Page2.aspx";
      }

function tab2() {
    window.location = "Page3.aspx";
       }

function tab3() {
    window.location = "Page4.aspx";
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.