I get error "Element Frameset not supported' when I run the below code on VS 2005 Team Edition for Software Architects. Surprisinly, I find that the same code runs well with Vs 2005 Professional Edition. Any reason any? Code :
<%@ Page Language="
VB" AutoEventWireup="false" CodeFile="11.aspx.
vb" Inherits="_11" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<FRAMESET COLS="25%, 50%, *">
<FRAME SRC="contents.htm">
<FRAME SRC="info.htm">
<FRAME SCROLLING="NO" SRC="graphic.htm">
</FRAMESET>
</html>