Web Tab Control

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Robin Chatterjee

    Web Tab Control

    I have created a form with a lot of webTabs. Some tabs when click will
    display information if conditions apply else the click on that tab will be
    redirected to the last visited tab.

    It works great in a form. When i converted it to a user control (.ascx and
    ..ascx.vb)
    with all the code behind and copied and this .ascx and .ascx.vb files to a
    new Application altogether and decided to use the below code to display the
    usercontrol
    in the page load event
    Dim LQ As UserControl = LoadControl("LQ .ascx")
    PlaceHolder1.Co ntrols.Add(LQ)

    All works fine ( Ex Rd and Wr to the Db and performing logics.) but somehow
    the TabStrip.select ed index is not what it should be during a post back which
    is disrupting the mechanics of it completely.

    Pls help
Working...