Click here to Skip to main content
15,883,901 members
Articles / Programming Languages / Javascript
Article

A Simple TabView for Web Pages

Rate me:
Please Sign up or sign in to vote.
3.50/5 (8 votes)
17 Dec 20032 min read 94.9K   1.3K   29   13
A tab view representation of related web pages

Sample screenshot

Introduction

We come across some situations where in we need to show say some 'n' number of related pages. Instead of displaying them as simple links, a tab view representation as discussed in this article would provide a more clear picture. This component delivers the tab control in pure DHTML, using cascading stylesheets and JavaScript to do the job. The demo project shows how to use the component in your .asp pages.

Using the code

Listed below are the steps to create the Tabview in your ASP page. The CSS styling part can be changed as per your requirement.

Create an object for the Tabview component.

VBScript
'Create the Object for the TabView Component
set TabView = Server.CreateObject("TabView.Tabs")

Give the CSS class for Active Tab & In-Active Tab. If you want fixed length tabs, then specify the width, else give it as zero.

VBScript
'Styles - width of each tab (give 0 to provide self width)
'Active tab style from CSS
'In active tab style from CSS
TabView.Styles 0, "ActiveTab", "InActiveTab"

Give the path of the Images folder.

VBScript
'Path of the images folder
TabView.ImagePath "images"

Now simply go about adding the tabs as per the following syntax.

VBScript
TabView.add "Info","Info Page","openfold.gif",
         "clsdfold.gif","Info_Page.asp"

Some points on the usage:

  • The tabs will be displayed in the order in which they are added as above.
  • Different images can be used for Active & In-Active tabs.
  • Any query string value can be added to the page to be redirected to, E.g. as follows:
    VBScript
    TabView.add "Info","Info Page","openfold.gif","clsdfold.gif",
      "Info_Page.asp?Query=New_Page"
  • The <FORM> tag in all the tabbed pages should follow POST method.
  • A hidden field hdnQS is needed inside the <FORM> tag of all the tabbed pages, however the name of this hidden field can be changed.
  • Redirecting to a specific tab page can also be done by calling the JavaScript function PostForm(arg1,arg2). arg1 is the tab page to redirect to and arg2 is the TABID.

    Sample screenshot

    HTML
    <A href=javascript:PostForm('Info_Page.asp','Info')>
        Take me to Information Page</A>

How to use:

  • Unzip the files to the local system.
  • Create a virtual directory pointing to the folder Tabview.
  • Run the batch file registerDLL.bat
  • Browse the directory, for e.g.: http://localhost/...<your local path>/Tabview/Info_Page.asp
  • Now you have the TabView ready for your use.

Have fun!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Tester / Quality Assurance
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionTab view dll - (TabView.dll) Pin
Venkat AK26-May-14 3:13
Venkat AK26-May-14 3:13 
QuestionLoad a specific tab? Pin
Tim Phelps19-Apr-07 2:42
Tim Phelps19-Apr-07 2:42 
QuestionInvalid class string Pin
emmpergul1-Oct-06 4:19
emmpergul1-Oct-06 4:19 
GeneralFree Spell Check in Asp Pin
AashishSingh17-Jan-06 0:18
professionalAashishSingh17-Jan-06 0:18 
GeneralTabview in a modal Pin
Member 142622715-Oct-04 13:42
Member 142622715-Oct-04 13:42 
GeneralRe: Tabview in a modal Pin
Priyadharshini Sridharan15-Oct-04 13:48
Priyadharshini Sridharan15-Oct-04 13:48 
GeneralSource Code for DLL Pin
14-Sep-04 8:25
suss14-Sep-04 8:25 
GeneralBAD .dll Pin
Mobasoft24-Aug-04 11:38
Mobasoft24-Aug-04 11:38 
GeneralASP Pin
suman_sunil5-Feb-04 4:27
suman_sunil5-Feb-04 4:27 
GeneralZip file download link broken Pin
chaycock18-Dec-03 4:58
chaycock18-Dec-03 4:58 
QuestionComparaison with the Internet Web control from asp.net ? Pin
Jonathan de Halleux18-Dec-03 3:22
Jonathan de Halleux18-Dec-03 3:22 
GeneralBroken links Pin
Jonathan de Halleux18-Dec-03 3:11
Jonathan de Halleux18-Dec-03 3:11 
GeneralRe: Broken links Pin
Marc Clifton18-Dec-03 3:18
mvaMarc Clifton18-Dec-03 3:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.