Browser Compatibility

Adeel Mirza 121 Reputation points
2022-01-28T07:55:53.14+00:00

I am using Bootstrap framework and using its classes and DIV in my ASPX page. Its working perfectly fine in Google Chrome but everything gets messed up in Internet Explorer.
Though when I run that application from my local PC, it works fine, but the problem happens when I host it in a web server and run it in IE11.

169412-image1.png

169413-image2.png

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,254 questions
0 comments No comments
{count} votes

Accepted answer
  1. Yijing Sun-MSFT 7,066 Reputation points
    2022-01-31T03:30:08.28+00:00

    Hi @Adeel Mirza ,
    What are the version of Bootstrap and IE? You could try to add head like this:

    <m eta http-equiv="X-UA-Compatible" content="IE=edge" />  
    

    Best regards,
    Yijing Sun


    If the answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our  documentation  to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. AgaveJoe 26,201 Reputation points
    2022-01-28T12:43:14.99+00:00

    I'm guessing you have implemented Bootstrap 5 which dropped support for IE 10 and 11. Please read the Bootstrap docs.

    https://getbootstrap.com/docs/5.0/getting-started/browsers-devices/

    Otherwise, check the browser's dev tools for any errors. Perhaps you are missing a file on the server. Unfortunately, you have not provided enough information for this community to reproduce this issue.