Home  |  Latest News  |  Contribute  |  F.A.Q.  |  Account  |  Scripts | About
Search ASPNut:
 
ASP Reference
Server Variables
ASP Glossary
Related Sites

Free Components

HTML Reference
Web Colors
Entities
CSS Level 1
Encode/Decode
Glossary

Our Sponsors
ASP Nuke CMS
Free Auctions
PHP 5 Script
Funktastic Blog
ULost Directory
Team Task

 

 

 

 

 

 

 

 

 

 

 

 

<FRAMESET>

The FRAMESET element is used to define a collection of frames for a web page. A frameset allows you to divide a web page into multiple windows which can be scrolled independently of one another.

Client-side code such as Javascript and the TARGET attribute allow frames to "talk" to each other. One of the most common uses of frames is to keep a navigation element at a set position on the screen while the user scrolls through a long section of content.

Attributes

Attribute Description
ID Identifies this tag to reference in script (program code)
CLASS Define the class used to render this element (defined by a style sheet)
TITLE A title that is associated with the element (displayed as a tooltip in Internet Explorer)
NAME The name attribute identifies the frameset for reference through client-side scripting or by the TARGET attribute
ROWS Comma-seperated list of sizes indicating the height of each frame in pixels. By specifying this attribute, you are indicating the FRAME elements should be laid out vertically. You may include a wildcard height (*) in this list which will use up all remaining space
COLS Comma-seperated list of sizes indicating the width of each frame in pixels. By specifying this attribute, you are indicating the FRAME elements should be laid out horizontally. You may include a wildcard height (*) in this list which will use up all remaining space

Example

<FRAMESET ROWS="120,*">
<FRAME NAME="TOPFRAME" SRC="/topframe.asp" SCROLLING="no" MARGINWIDTH="0">
<FRAME NAME="TOPFRAME" SRC="/mainframe.asp" SCROLLING="auto" MARGINWIDTH="10">
</FRAMESET>

Compatibility

HTML 4.01

Return to HTML Tag Reference Overview

Orvado Technologies

ASP Nuke CMS
Free Open Source
Content Manager
HomeFix Boards
Home Remodeling
Message Boards

Contact Us | Contribute | About | Site Map



"The man who has no imagination has no wings." - Muhammad Ali

©2007 Orvado Technologies, All Rights Reserved
ASP Nut provides articles and reference documentation for Active Server Page developers.