ASP.NET,C#,IIS,MIME类型,文件上传条件
发布时间:2020-05-24 15:38:15 所属栏目:asp.Net 来源:互联网
导读:我在网站上有一个文件上传网页表单,它只需要接受某些格式(或MIME类型)… 以下代码完美地工作,除了,它不会将.DOCX文件上传到服务器!这是唯一不起作用的文件类型…我已经仔细检查了每一行代码,甚至已经进入IIS管理器以确保继承了.DOCX MIME类型,它们是…… 有
|
我在网站上有一个文件上传网页表单,它只需要接受某些格式(或MIME类型)… 以下代码完美地工作,除了,它不会将.DOCX文件上传到服务器!这是唯一不起作用的文件类型…我已经仔细检查了每一行代码,甚至已经进入IIS管理器以确保继承了.DOCX MIME类型,它们是…… 有没有人知道为什么.DOCX文件不会像其他文件类型一样上传到服务器? 代码片段: string savePath = "D:HIDDEN PATH HERE";
string fileMsg;
// Before attempting to perform operations
// on the file,verify that the FileUpload
// control contains a file.
if (FileUpload1.HasFile)
{
// Check to see that the content type is proper and allowed.
// DOC: application/doc,appl/text,application/vnd.msword,application/vnd.ms-word,application/winword,application/word,application/x-msw6,application/x-msword
if (
FileUpload1.PostedFile.ContentType == "text/rtf" ||
FileUpload1.PostedFile.ContentType == "application/doc" ||
FileUpload1.PostedFile.ContentType == "appl/text" ||
FileUpload1.PostedFile.ContentType == "application/vnd.msword" ||
FileUpload1.PostedFile.ContentType == "application/vnd.ms-word" ||
FileUpload1.PostedFile.ContentType == "application/winword" ||
FileUpload1.PostedFile.ContentType == "application/word" ||
FileUpload1.PostedFile.ContentType == "application/msword" ||
FileUpload1.PostedFile.ContentType == "application/x-msw6" ||
FileUpload1.PostedFile.ContentType == "application/x-msword" ||
FileUpload1.PostedFile.ContentType == "application/pdf" ||
FileUpload1.PostedFile.ContentType == "application/x-pdf" ||
FileUpload1.PostedFile.ContentType == "application/vnd.openxmlformats-officedocument.wordprocessingml.document" ||
FileUpload1.PostedFile.ContentType == "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
)
{
// Get the name of the file to upload.
String fileName = FileUpload1.FileName;
// Append the name of the file to upload to the path.
savePath += strnow + fileName;
// Call the SaveAs method to save the
// uploaded file to the specified path.
// This example does not perform all
// the necessary error checking.
// If a file with the same name
// already exists in the specified path,// the uploaded file overwrites it.
FileUpload1.SaveAs(savePath);
// Notify the user of the name of the file
// was saved under.
//fileMsg = "Your file was saved as " + fileName;
fileMsg = "";
}
else
{
fileMsg = "Your file was not an accepted format. Please use PDF,RTF or DOC formats.";
}
解决方法见 this answer,它指向 this page.DOCX Mime类型: application/vnd.openxmlformats-officedocument.wordprocessingml.document 编辑: || FileUpload1.PostedFile.FileName.ToLower().Substring(FileUpload1.PostedFile.FileName.Length - 4) == "docx" (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- 如何使用ASP.NET授权允许访问.css文件?
- asp.net-mvc – 用于电话号码或社会安全号码的DisplayForma
- 什么可能导致“客户端断开连接”的ASP.NET异常?
- asp.net-mvc – 如何在Controller外访问RequestContext?
- 全局导入/使用.NET中的别名
- asp.net – $(“#dialog”).parent().appendTo($(“form:f
- 使用ASP.NET Web服务的jQuery AutoComplete(jQuery UI 1.8r
- 强制ASP.Net MVC Bundle以某种顺序呈现javascript文件
- asp.net – SQL Server查询从ADO.NET运行速度比SSMS慢
- 如何在ASP.NET MVC中禁用HTTP Keep-Alive?
推荐文章
站长推荐
热点阅读
