【发布时间】:2011-02-07 10:44:43
【问题描述】:
请参阅以下代码。我正在上传文件,但我从不同的浏览器得到不同的结果。
Firefox var path = "about.restaurant.jpg"
然而在 ie6 路径 = "D:\dev\xxxxx\xxxxx\xxxxx\Website\images\about.restaurant.jpg"
foreach (string file in Request.Files)
{
var hpf = Request.Files[file] as HttpPostedFileBase;
var path = hpf.FileName;
}
我在 MVC2 中遇到了这个问题。刚刚升级到MVC3。存在同样的问题。
<form action="/Product/SaveUploadImage" method="post" enctype="multipart/form-data">
<input type="file" name="file" id="file" />
<input type="submit" value="Save" class="button" />
</form>
【问题讨论】:
标签: asp.net asp.net-mvc-3