1

I have seen an example of what i intend to do from this question uploading documents to sql server i have this working fine, but how would you upload an .mpp file? What would be the type be for it I have been searching for a while but can't seem to find anything.

Community
  • 1
  • 1
Peter
  • 351
  • 1
  • 5
  • 14
  • Just to point out, this question doesn't really warrant any of those tags. This is a simple question about which MIME type to use for a specific file, and is irrelevant to what you just so happen to be doing with the value. – musefan Feb 27 '13 at 14:10
  • hi, i thought id use the tags as I'm coding in c# and asp, I'm new to the site so I'm still learning. Sorry – Peter Feb 27 '13 at 14:13
  • BTW, based on you old tags, you may be interested in [something like this](http://stackoverflow.com/questions/81283/asp-net-how-to-detect-file-upload-mime-type) – musefan Feb 27 '13 at 14:19

1 Answers1

5

As detailed here, you can see a few different MIME types that could be used. The following is that list:

application/vnd.ms-project, application/msproj, application/msproject, application/x-msproject, application/x-ms-project, application/x-dos_ms_project, application/mpp, zz-application/zz-winassoc-mpp

NOTE: "MIME type for [File Extension]" is a good phrase to use when searching for these things

musefan
  • 47,875
  • 21
  • 135
  • 185