View Full Version : Re: IE 5.2.2 and encoded accents in ComboBox


Mariano Tanenglian Jr
07-21-2003, 08:43 PM
Try using this

<p>&ccedil;</p>
<p>&egrave; &eacute; &ecirc; &euml; </p>
<p>&ntilde;</p>
<p>&ograve; &oacute; &ocirc; &otilde; &ouml;</p>
<p>&agrave; &aacute; &acirc; &atilde; &auml;</p>
<p>&igrave; &iacute; &icirc; &iuml; </p>
<p>&ugrave; &uacute; &ucirc; &uuml; </p>

"Boris Maras" <bmaras_nospam[at]sopragroup.com> wrote in message
news:%23cTF134TDHA.3192[at]tk2msftngp13.phx.gbl...
> Hi,
>
> I'm currently developing a DotNet application and I have problems with IE
> Mac support
>
> When there are accents in an <option> tag, DotNet encode them (for
example,
> é is encoded as é).
> Those lines of the CB are displayed as blank lines uner IE 5.2.2
Macintosh.
>
> If this caracter is not in a CB, it's displayed correctly.
>
> Is there a workaround for that? (it seems like DotNet does not let me
encode
> DropDownLists the way I want : é should be encoded as &eacute; )
>
> Thanks
>
> Boris Maras
>
>

Boris Maras
07-22-2003, 12:28 PM
If I do so, it displays &eacute; and not é. DotNet encodes the string I give
him. The problem is that the pagecode it uses is not well supported by IE
Mac


"Mariano Tanenglian Jr" <mtanenglian[at]mcelhanney.com> a écrit dans le message
de news: euzzYB8TDHA.1552[at]TK2MSFTNGP12.phx.gbl...
> Try using this
>
> <p>&ccedil;</p>
> <p>&egrave; &eacute; &ecirc; &euml; </p>
> <p>&ntilde;</p>
> <p>&ograve; &oacute; &ocirc; &otilde; &ouml;</p>
> <p>&agrave; &aacute; &acirc; &atilde; &auml;</p>
> <p>&igrave; &iacute; &icirc; &iuml; </p>
> <p>&ugrave; &uacute; &ucirc; &uuml; </p>
>
> "Boris Maras" <bmaras_nospam[at]sopragroup.com> wrote in message
> news:%23cTF134TDHA.3192[at]tk2msftngp13.phx.gbl...
> > Hi,
> >
> > I'm currently developing a DotNet application and I have problems with
IE
> > Mac support
> >
> > When there are accents in an <option> tag, DotNet encode them (for
> example,
> > é is encoded as é).
> > Those lines of the CB are displayed as blank lines uner IE 5.2.2
> Macintosh.
> >
> > If this caracter is not in a CB, it's displayed correctly.
> >
> > Is there a workaround for that? (it seems like DotNet does not let me
> encode
> > DropDownLists the way I want : é should be encoded as &eacute; )
> >
> > Thanks
> >
> > Boris Maras
> >
> >
>
>

Boris Maras
10-02-2003, 09:56 AM
If anyone cares :

It took me a long time to find it, but now it works!

the solution is to fix the charset to "windows-1252" in web.config :
<globalization requestEncoding="windows-1252"
responseEncoding="windows-1252" culture="fr-FR"/>

It works with all the browsers I tested (IE, Netscape 6, Mozilla, Safari and
Opera 6 under Windows, Mac and Linux)

Hope this helps

"Boris Maras" <bmaras_nospam[at]sopragroup.com> a écrit dans le message de
news:%23e5$yREUDHA.3132[at]tk2msftngp13.phx.gbl...
> If I do so, it displays &eacute; and not é. DotNet encodes the string I
give
> him. The problem is that the pagecode it uses is not well supported by IE
> Mac
>
>
> "Mariano Tanenglian Jr" <mtanenglian[at]mcelhanney.com> a écrit dans le
message
> de news: euzzYB8TDHA.1552[at]TK2MSFTNGP12.phx.gbl...
> > Try using this
> >
> > <p>&ccedil;</p>
> > <p>&egrave; &eacute; &ecirc; &euml; </p>
> > <p>&ntilde;</p>
> > <p>&ograve; &oacute; &ocirc; &otilde; &ouml;</p>
> > <p>&agrave; &aacute; &acirc; &atilde; &auml;</p>
> > <p>&igrave; &iacute; &icirc; &iuml; </p>
> > <p>&ugrave; &uacute; &ucirc; &uuml; </p>
> >
> > "Boris Maras" <bmaras_nospam[at]sopragroup.com> wrote in message
> > news:%23cTF134TDHA.3192[at]tk2msftngp13.phx.gbl...
> > > Hi,
> > >
> > > I'm currently developing a DotNet application and I have problems with
> IE
> > > Mac support
> > >
> > > When there are accents in an <option> tag, DotNet encode them (for
> > example,
> > > é is encoded as é).
> > > Those lines of the CB are displayed as blank lines uner IE 5.2.2
> > Macintosh.
> > >
> > > If this caracter is not in a CB, it's displayed correctly.
> > >
> > > Is there a workaround for that? (it seems like DotNet does not let me
> > encode
> > > DropDownLists the way I want : é should be encoded as &eacute; )
> > >
> > > Thanks
> > >
> > > Boris Maras
> > >
> > >
> >
> >
>
>