I\'m using Response.AddHeader(\"Content-Disposition\", \"attachment; filename=\" + Server.HtmlEncode(FileName)); to pop a \'open/save file\' dialog for the users, so that th
Try this setting the content type to octet stream:
Response.ContentType = "application/octet-stream";