frameset is an element of HTML used to show multiple pages in same window, i.e. each page in a frame.
Element frameset is not supported by XHTML 1.0 Transitional.
But it can be used like this
 
<html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<title>DAS Reports</title>
</
head>
<
frameset rows="80,* " frameborder="no" border="0" framespacing="0">
<frame src="TopHeader.aspx" name="topFrame" scrolling="no">
<frame src="Login2.aspx" name="centerFrame" scrolling="auto">
</frameset>
</
html>
 
Please note, in above code, there is no body tag.
 

0 comments: