|
-
May 1st, 2007, 05:52 AM
#1
Thread Starter
New Member
Problems with MS Excel and pound sign £
Hi
I'm trying to do a simple export to Excel using the code below. However, the "£" sign appears as "£" in the spreadsheet.
With Response
.ClearHeaders()
.Clear()
.AddHeader("Content-Type", "text/csv")
.AddHeader("Content-Disposition", "attachment; filename=export.xls")
.Write("£")
.End()
End With
I've tried:
- changing the contentencoding
- changing it to .Write(Server.HTMLDecode("£"))
- AddHeader("Content-Type", "application/vnd.ms-excel")
but no joy.
Any help would be great.
Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|