在我的MVC项目中,我有一个表单来上传文件。如果我使用Google Chrome,Firefox或Opera上传文件,我只会获得Inventory_June_2013.xlsx
这样的文件名。
当我使用IE8上传文件时,我得到一个文件名
C:\Documents and Settings\gornel\My Documents\Inventory_June_2013.xlsx
。
如何解决这个问题?
UPD
这是我的 File.cs
using System;
using System.ComponentModel.DataAnnotations;
namespace Argussite.SupplierService.Core.Domain
{
public class File : Entity
{
public const int ContentTypeLength = 100;
public const int FileNameLength = 100;
public const int StorageNameLength = 100;
protected File()
{}
public File(string name, string contentType, long fileSize)
{
Name = name;
ContentType = contentType;
FileSize = fileSize;
StorageName = Guid.NewGuid().ToString("D");
UploadTime = DateTime.Now;
}
[Required, MaxLength(FileNameLength)]
public string Name { get; set; }
[Required, MaxLength(ContentTypeLength)]
public string ContentType { get; set; }
public long FileSize { get; set; }
[Required, MaxLength(StorageNameLength)]
public string StorageName { get; set; }
public DateTime UploadTime { get; set; }
}
}
这是来自控制器的代码
public ActionResult UploadFile(Guid eventId, HttpPostedFileBase file)
{
//...
var document = new File(file.FileName, file.ContentType, file.ContentLength);
@event.FileId = document.Id;
@event.ActualDate = document.UploadTime;
Context.Files.Add(document);
file.SaveAs(GetFilePath(document.StorageName));
Register(new DocumentUploadedNotification(@event, @event.DocumentType, document, UrlBuilder));
return RedirectToAction("Details", "Suppliers", new { id = @event.SupplierId });
}
我使用类HttpPostedFileBase和属性FileName。
答案 0 :(得分:2)
众所周知,IE返回完整路径,而其他浏览器只提供文件名。不幸的是,这是你必须自己处理的情况,asp.net无法帮助它。
您可以使用Path.GetFileName(file.FileName)方法仅使用文件名部分。