Click to See Complete Forum and Search --> : where can i find the full table for codePage?


pelegk1
09-15-2003, 09:32 AM
where can i find the full table for codePage?

Ribeyed
09-17-2003, 06:48 AM
microsoft

pelegk1
09-17-2003, 07:15 AM
Microsoft.XMLHTTP

Ribeyed
09-17-2003, 07:25 AM
nope:(

never work with codepage before, however the codepage property determines which code page will be used to prepare the output and it must match the code page used by the client. So i would be looking at finding out the clients codepage and then creating the correct code for codepage based on that.

sorry can't help you further.

pelegk1
09-17-2003, 07:46 AM
in the asp the
codepahe=1255
isnt it enough?
how can i change the clients code page from asp?

Ribeyed
09-17-2003, 08:01 AM
Hi,
look i don't know that answer to this question i have never worked with this before. Logially if you are saying in your ASP codepage = 1255 and the client is codepage = 1340 or whatever then the page is not going to be displayed correctly.
I would think you need to determine what codepage the client is using and then dynamically generate the correct codepage on your ASP page.
I don't know how to determine the clients codepage so i can't help you with that. But once you find out how to do that then all you have to do is an elseif or case statement and generate the correct codepage.




'client codepage = variable1

if clientcodepage = 1 then
codepage = 1
elseif clientcodepage = 2 then
codepage = 2
etc.............
elseif clientcodepage = 1255 then
codepage = 1255
end if






[/code]

pelegk1
09-17-2003, 08:35 AM
i tried response.write codepage and got nopthing