Results 1 to 3 of 3

Thread: [RESOLVED] force browser mode

  1. #1
    Hyperactive Member
    Join Date
    Jul 05
    Location
    In A House :)
    Posts
    271

    Resolved [RESOLVED] force browser mode

    i have an ASP.NET application (not website) that i have added the

    Code:
    <meta http-equiv="X-UA-Compatible" content="IE=Edge" >
    to the head of the master page, when i launce the app from the server it wants to put it in ie9 compatability mode, rather than ie9 mode (which works).

    it has some funky behaviors if the mode on the browser is not set to ie9.

    doctype is
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    anyone have any success with setting compatability mode??
    --"Tap Dancing On The Brittle Edge Of Sanity"--

  2. #2
    Fanatic Member
    Join Date
    Oct 99
    Location
    Chorley, Lancashire, England
    Posts
    935

    Re: force browser mode

    On some of our sites we have the following compatability meta tag (in the site master page)
    HTML Code:
    <meta http-equiv="X-UA-Compatible" content="IE=8"/>
    and the doctype
    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    On my machine I am running IE9. I have not experienced any issues with this setup.

  3. #3
    Hyperactive Member
    Join Date
    Jul 05
    Location
    In A House :)
    Posts
    271

    Re: force browser mode

    ended up taking
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    and reducing it to
    Code:
    <!DOCTYPE html>
    and using 9 instead of 8
    --"Tap Dancing On The Brittle Edge Of Sanity"--

Posting Permissions

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