The Tabstrip tag renders as a series of tabs that, when clicked, shows the corresponding content within that tab. This control requires that Javascript be enabled in the browser to function correctly.
<Tabstrip
BackColor="color name|#dddddd"
BorderColor="color name|#dddddd"Font-Bold="True|False"
Font-Italic="True|False"
Font-Names="string"
Font-Overline="True|False"
Font-Size="string|Smaller|Larger|XX-Small|X-Small|Small|Medium| Large|X-Large|XX-Large"
Font-Strikeout="True|False"
Font-Underline="True|False"
ForeColor="color name|#dddddd"
Height="size" HoverBackColor="color name|#dddddd" HoverForeColor="color name|#dddddd"
SelectedBackColor="color name|#dddddd" SelectedForeColor="color name|#dddddd" ShowPanelBorders="True|False" Visible="True|False"
Width="size"> <tab text="string"> ...HTML/Text Content... </tab> ...Additional <tab> tags as needed...
This tag allows you to create a tabbed user interface for your form much like a Rolodex or set of manila folders. When a tab is clicked, it becomes the selected tab and its associated content is shown, while any previously visible tab content is hidden. The tabstrip relies on and requires that Javascript be enabled in your users' browsers. Using the <tabstrip> control you can quickly create an attractive interface to turn larger forms into paged forms, presenting data to the user in smaller, more manageable chunks.
Back to top<addform>
...
<Tabstrip Font-Bold="True" Font-Names="Arial,Helvetica,sans-serif" HoverBackColor="Black" HoverForeColor="White">
<Tab Text="Customer Info">
<table>
<tr> <td> <label for="txtFirstName" text="First Name" />
</td> <td> <textbox id="txtFirstName" datafield="FirstName" datatype="string" />
</td>
</tr>
<tr>
<td>
<label for="txtLastName" text="Last Name" /> </td>
<td> <textbox id="txtLastName" datafield="LastName" datatype="string" />
</td>
</tr> </table> </Tab> <Tab Text="Notes"> <table>
<tr>
<td colspan="2">
<Textarea id="taNotes" datafield="Notes" datatype="string"/> </td> </tr> </table> </Tab> </Tabstrip> <addbutton text="Add"/> <cancelbutton text="Cancel"/>
</addform>