Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7074579
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:04:29+00:00 2026-05-28T06:04:29+00:00

I am trying to load office documents for a user by HttpContext.Current.Response.AddHeader(Content-Disposition, attachment; filename=

  • 0

I am trying to load office documents for a user by

HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name); 
HttpContext.Current.Response.ContentType = MIMETypesDictionary[fileExt];
HttpContext.Current.Response.BinaryWrite(fileArray);

and my MIMETypesDictionary has this (abbreviated)

    private static readonly Dictionary<string, string> MIMETypesDictionary = new Dictionary<string, string>
      {
        {"doc", "application/msword"},
        {"docx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document"},
        ...
        {"xls", "application/vnd.ms-excel"},  
        {"xlsx", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"}
        ...
      };

doc and xls files work great. Docx and xlsx files error in the client application.

Excel errors

Excel found unreadable content in 'filename.xlsx'. Do you want to recover the contents of this workfbook?

Word errors

The file filename.docx cannot be opened because there are problems with the contents.

if I click Yes, it loads and the docs looks okay. This error won’t fly for users of course. Am I using the right mime types for these files? I also tried application/vnd.ms-word.document.12, application/vnd.ms-excel.12 and application/octet-stream and got the same errors.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:04:30+00:00Added an answer on May 28, 2026 at 6:04 am

    resolved! had to build out the response code

    HttpContext.Current.Response.Clear();
    HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name); 
    HttpContext.Current.Response.ContentType = MIMETypesDictionary[fileExt];
    HttpContext.Current.Response.BinaryWrite(fileArray);
    HttpContext.Current.Response.End();
    HttpContext.Current.Response.Flush();
    

    and i kept the octet-stream values for the file types and it works great!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to load an XML file from a different domain name as
Trying to load a shared lib out of the current '.' dir in a
I am am trying to load a SQL table from a flat file. The
Im trying to load a csv file into a datatable using oledb. This is
Trying to load a file into python. It's a very big file (1.5Gb), but
I am trying to load the template file my SPDocumentLibrary has set, do some
Trying to load a local file into a webbrowser control but this does not
I'm trying to load a properties file without using the actual path of the
I`m trying to load an php file to the bottom of my page without
I'm trying to use Microsoft.Office.Interop.Excel. It seems to load fine but when I try

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.