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?
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?
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