[ASP.NET 2] Compatibility with IE6 with the master page

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default [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

  2. Similar Questions and Discussions

    1. master details page
      Mr. OMAR I need your help in this part, its very important for me.
    2. 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...
    3. 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...
    4. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139