Reputation: 5275
We have a website that we have almost finished turning into an application. Everything works fine except a little issue with BrowserLink in IE 8 and IE 7. So I found somewhere that told me to change debug to false. So I did.
<!--<compilation debug="true" targetFramework="4.5">-->
<compilation debug="false">
Unfortunately when I did that, this is what the login page looked like.
If anyone has any ideas of what could be causing this that would be awesome. I know that this is EXTREMELY general, but I don't really know what is causing the problem...Everything works fine when debug="true". And please don't tell me WHY it should be set to false, I have already read enough articles talking about that.
Upvotes: 0
Views: 334
Reputation: 166
check the charset of the web.config
open with any text editor u will see the which encode is there like:
select the UTF-8 it may fix the issue
Upvotes: 1