I am trying to load two different sets of objects to the same area. on click Tab I, it displays object set A; and on click Tab II, it displays object sets two. Any suggestion of how to do this will be highly appreciated!
Stick object set A in a panel, and object set B in a panel.
I'm guessing you're hiding/showing the panels with the tab buttons you have? If so, read on:
Position panelA where you want the objects to appear on your screen. Then look into the html and get the Left and Top values from the tag.
In your page load event, add this code:
PanelB.Style.Add("Top", "valuegoeshere"
PanelB.Style.Add("Left", "valuegoeshere"
Voila! Now, when you run your code, your panel will magically be placed at those coordinates, and your tab buttons will handle showing/hiding them.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.