Code Comments
Programming Forum and web based access to our favorite programming groups.hello,
when i do
....
set xmlhttp = CreateObject("WinHTTP.WinHTTPRequest.5.1")
.....
StrXmlhttpResponseText = xmlhttp.responseText
StrXmlhttpResponseText = replace(StrXmlhttpResponseText, "../", "/")
response.write StrXmlhttpResponseText
i have an probleme is the responseText contain non ascii char such as ? or é
!
how can i correct that ?
thank you by advance
stéphane
Post Follow-up to this messageloki wrote:
> hello,
>
> when i do
>
> ....
> set xmlhttp = CreateObject("WinHTTP.WinHTTPRequest.5.1")
> .....
> StrXmlhttpResponseText = xmlhttp.responseText
> StrXmlhttpResponseText = replace(StrXmlhttpResponseText, "../", "/")
> response.write StrXmlhttpResponseText
>
>
> i have an probleme is the responseText contain non ascii char such as
> ? or é !
What are the symptoms of this problem?
Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Post Follow-up to this messageThe char ? is replace by ? i finally find a solution : add <@ codepage=28591 > in the asp source and the problem is resolve :) kind regards stéphane "Bob Barrows [MVP]" <reb01501@NOyahoo.SPAMcom> wrote in message news:uqKkyHSNFHA.3788@tk2msftngp13.phx.gbl... > loki wrote: > > What are the symptoms of this problem? > > Bob Barrows > -- > Microsoft MVP - ASP/ASP.NET > Please reply to the newsgroup. This email account is my spam trap so I > don't check it very often. If you must reply off-line, then remove the > "NO SPAM" >
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.