IE on Mac OSX bug with certain aspx-pages
From: Mattias Åslund (mattias_at_grafu.se)
Date: 08/30/04
- Next message: Narendra: "Re: Unable to establish Secure Connection Error message"
- Previous message: graswant: "Re: Can't establish secure connection- Please help!"
- Messages sorted by: [ date ] [ thread ]
Date: Mon, 30 Aug 2004 16:30:57 +0200
Hello,
Sorry if I post in the wrong group(?) - I don't usually use this one, but I
have come across a strange bug in Internet Explorer for Mac OSX:
If you save the attached (very simple) html-code as an aspx page on your IIS
server, and browse the page with IE on Mac OSX, rows with extended
characters
in the dropdown will be EMPTY! Once the row is selected, the text shows up
though.
The error reproduces on any Mac OSX, but not on any Windows or Linux
operating systems - or previous Max OSes. There are also no problems
browsing
the page with the browser "Safari" on OSX.
Now, the REALLY interesting part is, if you rename the extension to ".asp",
everything
works fine with IE+OSX! However, if you explicitly save the page as UTF-8,
and
include "<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8">"
in the HEAD, the error reappears in ASP using IE+OSX. There seems to be no
changes in the aspx-page though, regardless of the page encoding...
I have also tried, with no luck, to write the special characters using:
1. UTF-8/ANSI encoded characters (å ä ö)
2. HTML-encoded characters (å ä ö)
3. the unicode syntax generated by Server.HTMLEncode (encodings like #321)
I really need this kind of control in my aspx pages, and my customers want
to use OSX, and they prefer to use Internet Explorer.
Does anyone have a clue??
Can Microsoft confim this bug and solve it / find a workaround?
------------ BEGIN code snippet ------------
<HTML>
<HEAD>
<TITLE>Test of swedish characters</TITLE>
</HEAD>
<BODY>
<FORM action="test.aspx">
<SELECT>
<OPTION value="0">FIRST ROW</OPTION>
<OPTION value="1">Row á 1</OPTION>
<OPTION value="2">Row å 2</OPTION>
<OPTION value="3">Row è 3</OPTION>
<OPTION value="4">Row å 4</OPTION>
<OPTION value="99">LAST ROW</OPTION>
</SELECT>
</FORM>
</BODY>
</HTML>
------------ END code snippet ------------
- Next message: Narendra: "Re: Unable to establish Secure Connection Error message"
- Previous message: graswant: "Re: Can't establish secure connection- Please help!"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|