Rank: Member Groups: Member
Joined: 12/4/2008 Posts: 17
|
I created a test page with a tabstrip object - 3 tabs. Included a multipage and 3 page views. Everything looks and works fine and I com switch from one tab to the other. Now I want to disable on tab so I added the following code to the Page_load sub
TabStrip1.Items(1).Disabled = True
The tab is disabled but it looks ugly with one red X on each side of the tab name. I checked the properties of the red Xs and they refer to the URL of an image.
Any ideas on how to fix this proble. thanks
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, That is because your tab item used images that do not exist. You will need to find out what those images are, and then either stop using them, or put those files at the right place so that they can be found. See here about more information about how images are used to create tabstrip: http://doc.essentialobjects.com/library/1/tabstrip/design_using_images.aspxThanks
|