Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

rsegovia

xmlhttp

Recommended Posts

olá galera, estou exibindo um site dentro do meu site atravez do Microsoft XMLHTTP, so que qndo contém acentos ele zoa tudo, alguem sabe como resolver isso ?Vlw galera, AbraçosRogério Segovia

Compartilhar este post


Link para o post
Compartilhar em outros sites

Eu to usando assim:

 

ASP [/tr][tr]Function BinaryToString(strBinary)

BinaryToString=""

For intCount = 1 to LenB(strBinary)

theChar=chr(AscB(MidB(strBinary,intCount,1)))

BinaryToString = BinaryToString & theChar

Next

End Function

 

Function loadURL(URL)

set xmlHttp=server.CreateObject("Microsoft.XMLHTTP")

xmlHttp.open "GET",URL,false

xmlHttp.send

loadURL="erro"

if xmlHttp.readyState=4 then

loadURL=BinaryToString(xmlHttp.responseBody)

end if

End Function

 

pagina = "http://www.imasters.com.br/forum/"

response.write = loadURL(pagina)

[/tr]

 

A função BinaryToString faz tudo pra você.

 

T+

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.