I'm building a page in C# and I'm getting a cell value from GridView1
with a code and I'm receiving this:
Tendências de Desfiles
How can I convert it to this:
Tendências de Desfiles
...using C#? I tried it:
categoria = System.Text.Encoding.UTF8.GetString(System.Text.Encoding.GetEncoding("iso-8859-1").GetBytes(row.Cells[1].Text));
But don't work so please, help me to fix it.