Browser Compatibilty for asp.net application

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kiranghadge
    New Member
    • May 2010
    • 9

    Browser Compatibilty for asp.net application

    Hi all,
    I have developed one website which works very fine on IE 6,7 but i am not able to see my website correctly on Mozilla Firefox.
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    The HTML page is probably not valid.
    Run your application, right click on the browser window and choose "View Page Source". This will display the HTML for the page. Copy all of that code.

    Go to http://validator.w3.org/ and click on "Validate by Direct Input" then paste the code you copied earlier into the TextBox....run the validation and correct any errors that were found.

    -Frinny

    Comment

    • aspdotnetuser
      New Member
      • Nov 2010
      • 22

      #3
      Thanks Frinny for the URL

      Comment

      • drhowarddrfine
        Recognized Expert Expert
        • Sep 2006
        • 7434

        #4
        If it works fine in IE, but not Firefox, then your page is coded wrong. Never, ever use IE as a reference for how things work. Inept at best, all versions of IE are 12 years behind all other browsers in modern standards and practices and the worst browser on the planet by far.

        Always, always use ANY other browser to initially test your markup. THEN look at IE to see how it screws things up. But the multitude of quirks and bugs in IE are well known, as are the hacks to fix it.

        Comment

        Working...