controls not showing in framesets *resolved*
I'm trying to load a 2 HTML-pages and one ASPX-page (main) in a frameset
here is the frameset:
Code:
<%@ Page Language="vb" inherits="FramesetCodeBehind" src="Frameset.aspx.vb" AutoEventWireup="false" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>WebForm1</TITLE>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<frameset rows="64,*">
<frame name="banner" scrolling="no" noresize target="contents" src="UZ_banner.htm">
<frameset cols="146,*">
<frame name="contents" target="main" src="UZ_left.htm" scrolling="no">
<frame name="main" src="file:///C:/Inetpub/wwwroot/Stock2/Test.aspx" scrolling="auto">
</frameset>
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</HTML>
and here is my aspx-page:
Code:
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="Test.aspx.vb" Inherits="Stock2.WebForm1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<asp:TextBox id="TextBox1" style="Z-INDEX: 101; LEFT: 208px; POSITION: absolute; TOP: 96px" runat="server" Width="240px"></asp:TextBox>
<asp:Label id="Label1" style="Z-INDEX: 102; LEFT: 144px; POSITION: absolute; TOP: 96px" runat="server" Width="56px" Height="24px">typ hier:</asp:Label>
<asp:HyperLink id="HyperLink1" style="Z-INDEX: 103; LEFT: 144px; POSITION: absolute; TOP: 128px" runat="server" Width="144px" Height="8px">[email protected]</asp:HyperLink>
<asp:DropDownList id="DropDownList1" style="Z-INDEX: 104; LEFT: 144px; POSITION: absolute; TOP: 168px" runat="server" Width="304px" Height="24px">
<asp:ListItem Value="blauw">blauw</asp:ListItem>
<asp:ListItem Value="geel">geel</asp:ListItem>
<asp:ListItem Value="groen">groen</asp:ListItem>
</asp:DropDownList>
</form>
</body>
</HTML>
when i open frameset.aspx in my browser the controls are not dîsplayed, only the text that should've been in the controls (text & listcollection-properties)
The aspx-pages without framesets i have work fine!
any idea's what could be the problem?