eo_support wrote:Hi,
There are basically two ways to use a TabStrip: all within one page or with different pages. All in one page probably won't work for you. The best solution for you is probably to use a master page and put the TabStrip in the master page, and your page contents in different content pages. You will then use NavigateUrl to switch pages. You also want to look into AutoSelectSource property and SaveStatesCrossPages property because by default controls does not save state information across pages.
Thanks
This is what I did based on your answer:
1) Created a master page called "Default.aspx" that has only a tab strip.
2) The tabstrip has items Login, Patient, and Reports (Horizontal)
3) Under Login (in the tab strip builder) NavigateURL is Login.aspx, Patient is Patient.aspx and ...
4) For all the above 3, under tab strip builder Target Window is _parent ( I have tried _self also)
5) Under properties for TabStrip1
AutoSelectSource can be NavigateURL, NavigateExactURL, Item Click and Auto (I have tried all 4 of them)
AutoSelectTarget are Item and Path (I have tried both)
SaveStateCrossPages is set to True
When I run my application http://localhost/medical/default.aspx, the tabstrip comes up. Selecting Login, Patient or Reports opens individual pages and the
tab strip disappears.
Where did I go wrong? The individual pages do not have tab strips on them.
How can I have the tab strip stay always and still open these 3 pages below it? I did not understand what you mean by MasterPage and content pages. Is Master Page in my case default.aspx and content pages are my login.aspx, patient.aspx and Report.aspx?
Please help. Regards, Kumar.