Hi! Below code worked only for russian letter:
protected void Save(object sender, EventArgs e)
{
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
Byte[] bytes = encoding.GetBytes(txtRich.Text);
// write code to save data
lblResult.Text = "Entered Text : " + encoding.GetString(bytes);
}
When I use this word it's convert sign ?
Input text: Кулоб.
Output: ?????
How I can solve this?