Rank: Newbie Groups: Member
Joined: 9/11/2009 Posts: 1
|
Hello, I wish to create a tabstrip with a multipage control. I have it working at the minute, except I am loading a new .aspx file for every different tab. Is there a way of doing it all in the same form? I wish to acheive a page like the following:- http://demo.essentialobjects.com/Default.aspx?path=TabStripThanks. Regards, CSNM
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You actually don't "load a page" into another page. Our demo project didn't actually load a page (.aspx). It loads a user control (.ascx) for each demo. If you choose that way, you will need to convert each page into a user control, then use LoadControl to load it. Please see our demo source code for more details.
Another way to implement this is to simply put the TabStrip into a MasterPage. If you use that way, you will need to set the TabStrip's AutoSelectSource" to "NavigateUrl" and "AutoSelectTarget" to "Item". That is a much easier way.
Thanks!
|