[ASP.Net 2] Problem with the master page and IE6

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I've a master page in my application but with IE6, this page doesn't appear
and its css class is not executed.
But, the contentplaceholder control and its contents are visible on my web
page.

Is there a problem of compatibility between IE6 and the Master Page control
or not ?

This is my source :
***********************************************************
<%@ Master Language="VB" CodeFile="Default.master.vb"
Inherits="Default_master" %>
<!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">
<script type="text/javascript" src="../../Javascript/CMTextBox.js"></script>
<script type="text/javascript" src="../../Javascript/CMSearch.js"></script>
<script type="text/javascript" src="../../Javascript/AJAX.js"></script>
<link rel="stylesheet" href="../css/style.css" />
<title>CadManagerWeb</title>
</head>
<body>
<form id="form1" runat="server">
<div class="menuhaut">
<div id="entete"></div>
<asp:menu id="nav" runat="server"
datasourceid="SiteMapDataSource1"
cssclass="nav"
orientation="Horizontal"
maximumdynamicdisplaylevels="0"
skiplinktext=""
staticdisplaylevels="2" PathSeparator="\" />
</div>
<div id="contentBig">
<asp:contentplaceholder id="Main" runat="server" />
</div>
<asp:sitemapdatasource id="SiteMapDataSource1" runat="server"
startingnodeoffset="0" />
</form>
</body>
</html>
***********************************************************
Thx
 
Pierrick said:
Hi,

I've a master page in my application but with IE6, this page doesn't
appear
and its css class is not executed.
But, the contentplaceholder control and its contents are visible on my web
page.

Is there a problem of compatibility between IE6 and the Master Page
control
or not ?

Maybe you can get help by posting to a MS.Public.dotnet.framework.aspnet,
webforms or webcontrols NG.
 
Back
Top