Click here to Skip to main content
Licence 
First Posted 24 Mar 2004
Views 213,442
Bookmarked 56 times

Using Character Encoding in ASP.NET

By | 15 Apr 2004 | Article
Submit your data to the OS or database server which does not support the character set.

Introduction

This sample shows how to put your text completely into the operation system or database which does not support the text's character set.

Background

In web application development, frequently I have to connect each kind of old database and OS from customers such as SCO5.05 which does not support UTF-8, GB2312 and other character sets. So, how to completely store or take out my text data has became an important job.

Once on a project, I needed to put some Chinese words in UTF-8 into the system of SCO5.05 + Informix7.3. But when I check the database, found that all characters were changed into "->" (\0x7F) in fact. Many ways I tried, but ever could not solve this problem.

Why?

I found the answer later: this is the trouble of character encoding.

Open the file named web.config in the ASP.NET project. The value of requestEncoding attribute in globalization element is "utf-8". It means the requested texts were encoded as UTF-8 character set. Because SCO5.05 does not support UTF-8, therefore the requested texts where changed.

I got it. The texts should be encoded into the western language (iso8859-1) which SCO5.05 can distinguish from UTF-8 before saving, and converted back after loading.

Solution code

For example, to put the message "ÄãºÃPi(\u03a0)", means "Hello Pi(¦°)", into "memo" field of database, use the following code:

// message "Hello pi(¦°)" in Chinese
string unicodeStr = "ÄãºÃPi(\u03a0)";

OdbcConnection conn = new OdbcConnection();
System.Data.IDbCommand cmd = conn.CreateCommand();

conn.ConnectionString = "your connection string";
cmd.Connection = conn;

// Encoding here
cmd.CommandText = "INSERT INTO encoding VALUES ('" 
  + CEncoding.unicode_iso8859(unicodeStr) + "')";
cmd.Connection = conn;
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();

I used the function unicode_iso8859() above. It can convert the texts from UTF-8 to ISO8859-1.

public static string unicode_iso8859(string src) {
  Encoding iso = Encoding.GetEncoding("iso8859-1");
  Encoding unicode = Encoding.UTF8;
  byte[] unicodeBytes = unicode.GetBytes(src);
  return iso.GetString(unicodeBytes);
}
public static string iso8859_unicode(string src) {
  Encoding iso = Encoding.GetEncoding("iso8859-1");
  Encoding unicode = Encoding.UTF8;
  byte[] isoBytes = iso.GetBytes(src);
  return unicode.GetString(isoBytes);
}

Select your database and take a look. Is that all the texts converted into ISO symbol which you do not recognized?

Then you can convert back reversely by using iso8859_unicode() function. Of course, you can convert back with other encodings as you want.

If you are using an adapter and binding a DataSet to a DataGrid, it is easy to encode the data with these two methods, too. But you will pay the cost of more time. Use it or not? It is under your own judgment. J

OdbcAdapter adapter = new OdbcAdapter(); 
DataSet1 ds = new DataSet1(); 
DataGrid grid = new DataGrid(); 
OdbcConnection conn = new OdbcConnection(); 

// conn, adapter, dataset and datagrid were initialized 
conn.ConnectionString = "your connection string"; 
adapter.Connection = conn;
adapter.Fill(ds);

string xml = ds.GetXml();
ds.Clear();

// encoding here
ds.ReadXml(new System.IO.StringReader(CEncoding.iso8859_unicode(xml)));
grid.DataBind();

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Samuel Chen

Software Developer (Senior)

China China

Member

About me

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 2 Pinmembershankar.koppella0:08 7 Apr '10  
Generalunicode_iso8859 method returns nulls for some Unicode chars, this works better Pinmembermaestroboomer14:29 31 Jan '08  
AnswerRe: unicode_iso8859 method returns nulls for some Unicode chars, this works better PinmemberGokhan Mamaci4:54 11 May '09  
QuestionProblem in displaying devanagri characters stored in postgres database PinmemberSimmi Kapoor19:13 3 Apr '07  
GeneralI need help Pinmemberrealnaimi23:03 26 Aug '06  
QuestionIs there other workaround other than using your approach? Pinmemberkpchan221:01 1 Jun '06  
I have a database which is configured with locale en_US.850.
Understand that characters are not probably stored in the database with the correct encoding format. But using classic ASP page, input Chinese (Big5) words are directly inserted into the database without any conversion (i.e. garbage in garbage out). So, those data is viewed probably from another classic ASP page, as long as the IE browser is using the BIG5 encoding.
 
However, problem comes when I changed my application to use ASP.NET. In .NET, it is not garbage in garbage out. As the data is not probably encoded and stored in the DB, when the front-end show the data, ASP.NET will encode it to UTF-8 by default. That will make the data wrongly encoded. Even I change the responseEncoding in the web.config file to BIG5, it don't work as well, again, the data is not probably encoded.
 
I have considered your solution. But the point is there have been a huge data set that are stored inside which is not iso-8859-1 encoded, and it is not possible to convert them at this moment.
 
Is there workaround for this situation, provided that the database locale remains unchanged? D'Oh! | :doh:

 
cupsnoodles
AnswerRe: Is there other workaround other than using your approach? PinmemberTechzorcism6:26 27 Mar '07  
QuestionChinese characters Pinmembermrajanikrishna0:07 19 May '06  
QuestionRe: Chinese characters PinmemberSamuel Chen21:12 19 May '06  
AnswerRe: Chinese characters Pinmembermrajanikrishna22:12 19 May '06  
AnswerRe: Chinese characters PinmemberSamuel Chen0:24 20 May '06  
GeneralRe: Chinese characters Pinmembermrajanikrishna15:05 21 May '06  
GeneralThank you! Pinmemberquitchat6:57 5 Apr '06  
Generalhelp Pinmemberviketo6:50 21 Mar '05  
GeneralRe: help PinmemberSamuel Chen16:08 22 Mar '05  
GeneralRe: help PinsussAnonymous17:24 23 Mar '05  
GeneralRe: help PinmemberSamuel Chen17:23 13 Apr '05  
QuestionISO 8859-6 PinmemberNisha G19:23 20 Mar '06  
AnswerRe: ISO 8859-6 PinmemberSamuel Chen19:11 22 Mar '06  
GeneralGreat stuff !!! PinmemberYovav10:09 23 Apr '04  
GeneralRe: Great stuff !!! PinmemberSamuel Chen6:45 24 Apr '04  
GeneralRe: Great stuff !!! PinmemberYovav7:08 24 Apr '04  
GeneralRe: Great stuff !!! PinmemberSamuel Chen8:26 24 Apr '04  
GeneralRe: Great stuff !!! PinmemberYovav9:32 24 Apr '04  
GeneralRe: Great stuff !!! PinmemberSamuel Chen17:29 24 Apr '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 16 Apr 2004
Article Copyright 2004 by Samuel Chen
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid