Ask a Question related to ASP Components, Design and Development.
-
Pierrick #1
[ASP.NET 2] Compatibility with IE6 with the master page
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 Guest
-
master details page
Mr. OMAR I need your help in this part, its very important for me. -
bleeds and master page help
I created a 5 page document with facing pages and a bleed of 0.125 all around each page. I ran a coloured text frame into the bleed on both odd and... -
How to set up Master Page
hello , am a very new to illustrator as i am using pagemaker for page designing so i couldnot get any option for master page document in... -
Master page in Pub 2003 causing compatibility issues
I have not done any NS checking with 2003 yet. But with each release it does get harder to support NS. I did do testing of the master page(s) in... -
Jon Paal [MSMD] #2
Re: [ASP.NET 2] Compatibility with IE6 with the master page
post here for ASP.net help
microsoft.public.dotnet.framework.aspnet
"Pierrick" <Pierrick@discussions.microsoft.com> wrote in message news:221899C2-06AB-4729-894B-F8DFC7C77DE6@microsoft.com...> 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
Jon Paal [MSMD] Guest



Reply With Quote

