Thursday, August 7, 2014

CSS or Stylesheets : IIS displaying page differently when localhost is used in URL vs. Hostname or Computername or IP address or Machinename

To solve this issue: just add following line in your <head> tag.

<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
</head>


No comments:

Post a Comment

React-select is very slow on larger list - Found solution - using react-window

 I had more than 4000 items in searchable dropdownlist. I have used react-select but it was very slow. finally I found complete solution to ...