Can not use native characters

  • Thread starter Thread starter Dmitry Davletbaev
  • Start date Start date
D

Dmitry Davletbaev

Using HttpRequest.Form property I can't retrieve native characters
(Russian). For example, if I submit string "eeennneee" where "n" is native
character I retrieve only "eeeeee". The same when I work with HTTP query
string variables. How can I resolve it?
 
Set the page encoding to UTF-8?

--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Set the page encoding to UTF-8?

It is already.
I've been found a source of problem. I just started to study ASP.NET so in
many cases I paste code from MSDN to my pages without consideration. The
page started with:

<%@ Page Lsnguage="C#" Codepage="1251" %>

I just deleted "Codepage=1251" and all is OK.
Eric, thank you anyway!

--
Dmitry Davletbaev
--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top