PRB: Netscape Navigator 4.x Displays Square Boxes on Redraw When You View ASP.NET Pages (309548)
The information in this article applies to:
- Microsoft ASP.NET (included with the .NET Framework) 1.0
This article was previously published under Q309548 SYMPTOMS When text is redrawn on an ASP.NET Web page in Netscape
Navigator 4.x, square boxes appear instead of the original text. This problem
does not occur in Netscape Navigator versions 6.0 and later. CAUSE ASP.NET uses a default encoding of UTF-8. This problem
occurs because Netscape Navigator 4.x encounters problems when it redisplays UTF-8 encoded text.
RESOLUTION To work around this problem, add the following text to
change the encoding for the affected ASP.NET Web page:
<%
Response.ContectEncoding = Encoding.ASCII
%>
To change the encoding in the entire Web Application project, change
the following line in the Web.config file from
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
to:
<globalization requestEncoding="utf-8" responseEncoding="ascii" />
Modification Type: | Minor | Last Reviewed: | 4/24/2003 |
---|
Keywords: | kbConfig kbBrowse kbprb kbreadme kbWebForms KB309548 |
---|
|