0

I am exporting to excel gridview. I have symbol in grid price for pound and when I do export to excel symbol comes with unicode like Price (£).

How can I get rid off from that symbol?

Arash
  • 3,013
  • 10
  • 52
  • 74
k-s
  • 2,192
  • 11
  • 39
  • 73

1 Answers1

1
Response.Charset = "";
Response.ContentEncoding = System.Text.Encoding.Default;

I have taken it from stack overflow itself

How to export pound symbol from a C# Web App to Excel correctly? (£ is produced instead of £)

Thanks

Community
  • 1
  • 1
Dev
  • 6,570
  • 10
  • 66
  • 112