After a lot of research and fretting I found a some stuff I pieced together and used to come up with my ultimate solution. This handles being able to insert any character I could throw at it:
I created 2 methods to handle the 2 scenarios I was looking to solve.
1st going from the user interface to the database.
I made sure that my web page was sporting the Unicode(utf-8) encoding content type.
public string unicodeToIso(string InStr)
{
if (InStr != null)
{
Encoding iso = Encoding.GetEncoding(1252);
Encoding unicode = Encoding.Unicode;
byte[] unicodeBytes = unicode.GetBytes(InStr);
return iso.GetString(unicodeBytes);
}
else
return null;
}
Then I handled the return of the data to the user interface.
public string isoToUnicode(string InStr)
{
if (InStr != null)
{
// I originally used the string: "iso8859-1" instead of 1252
// 1252 helped 'catch' ALL of the Chinese characters as opposed to most
Encoding iso = Encoding.GetEncoding(1252);
Encoding unicode = Encoding.Unicode;
byte[] isoBytes = iso.GetBytes(InStr);
return unicode.GetString(isoBytes);
}
else
return null;
}
I truly hope this helps anyone else out there that may be stumbling on this same problem :)