Euro ( ? ) turns up "?"
am 05.01.2007 20:22:18 von kim
Inserting a record through sql (asp, msaccess textfield), inserting the euro
sign "?" shows up like a questionmark "?" in the output.
I have <%@ LANGUAGE="VBSCRIPT" CodePage=28591 LCID=2077 %> at the top of the
page where the insert statement is but still the euro sign is inserted like
something else (by looking at the data in the access database the euro sign
looks like a little square "")
Whats wrong? Kim
Re: Euro ( ? ) turns up "?"
am 05.01.2007 22:34:46 von Dave Anderson
Kim wrote:
> Inserting a record through sql (asp, msaccess textfield), inserting
> the euro sign "?" shows up like a questionmark "?" in the output.
>
> I have <%@ LANGUAGE="VBSCRIPT" CodePage=28591 LCID=2077 %> at the top
> of the page where the insert statement is but still the euro sign is
> inserted like something else (by looking at the data in the access
> database the euro sign looks like a little square "")
Do you mean it is not getting into MS Access as a , or when it is rendered
by the browser?
If the latter, you should use Server.HTMLEncode():
Response.Write(Server.HTMLEncode("")) --> €
The browser correctly renders it and submits it as in form elements.
--
Dave Anderson
Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Re: Euro ( ? ) turns up "?"
am 05.01.2007 23:23:30 von Anthony Jones
"Kim" wrote in message
news:eZCsR7PMHHA.4244@TK2MSFTNGP04.phx.gbl...
> Inserting a record through sql (asp, msaccess textfield), inserting the
euro
> sign "?" shows up like a questionmark "?" in the output.
>
> I have <%@ LANGUAGE="VBSCRIPT" CodePage=28591 LCID=2077 %> at the top of
the
> page where the insert statement is but still the euro sign is inserted
like
> something else (by looking at the data in the access database the euro
sign
> looks like a little square "")
>
> Whats wrong? Kim
>
>
Strictly speaking the Euro symbol is not in the ISO-8859-1 codepage. (Which
is why in Dave's example Server.HTMLEncode uses a unicode entity to
represent it).
Use CodePage=1252 and ensure that the source page (where the form is
rendered) includes the code:-
Response.Codepage = "Windows-1252"
Re: Euro ( ? ) turns up "?"
am 06.01.2007 11:03:08 von kim
Changing the codepage seems to work. Thanks a million times for your
answers. Kim.
Re: Euro ( ? ) turns up "?"
am 06.01.2007 14:28:37 von Anthony Jones
"Anthony Jones" wrote in message
news:%23oCRigRMHHA.4888@TK2MSFTNGP02.phx.gbl...
>
> "Kim" wrote in message
> news:eZCsR7PMHHA.4244@TK2MSFTNGP04.phx.gbl...
> > Inserting a record through sql (asp, msaccess textfield), inserting the
> euro
> > sign "?" shows up like a questionmark "?" in the output.
> >
> > I have <%@ LANGUAGE="VBSCRIPT" CodePage=28591 LCID=2077 %> at the top of
> the
> > page where the insert statement is but still the euro sign is inserted
> like
> > something else (by looking at the data in the access database the euro
> sign
> > looks like a little square "")
> >
> > Whats wrong? Kim
> >
> >
>
> Strictly speaking the Euro symbol is not in the ISO-8859-1 codepage.
(Which
> is why in Dave's example Server.HTMLEncode uses a unicode entity to
> represent it).
>
> Use CodePage=1252 and ensure that the source page (where the form is
> rendered) includes the code:-
>
> Response.Codepage = "Windows-1252"
>
Oops that should be Response.CharSet