R
Robin Chatterjee
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.Controls.Add(LQ)
All works fine ( Ex Rd and Wr to the Db and performing logics.) but somehow
the TabStrip.selected index is not what it should be during a post back which
is disrupting the mechanics of it completely.
Pls help
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.Controls.Add(LQ)
All works fine ( Ex Rd and Wr to the Db and performing logics.) but somehow
the TabStrip.selected index is not what it should be during a post back which
is disrupting the mechanics of it completely.
Pls help