我使用JUpload(http://jupload.sourceforge.net/)来处理文件上传,因为我需要选择文件夹并上传其中的所有文件的可能性。 好吧,无论如何,我的问题是,使用相同的代码,在IIS7文件上传工作,并与Asp网络开发服务器(MS Visual Studio 2010)上传将失败(错误消息:“字符串'^成功$'没有在响应团体中找到“)。使用JUpload在开发服务器中上传Asp.Net MVC文件
我的代码如下所示:
public ActionResult UploadTest(HttpPostedFileBase file)
{
Debug.WriteLine("ContentType: " +Request.ContentType + " HttpMethod: " + Request.HttpMethod);
Debug.WriteLine("File is null ?: " + (file == null));
Response.StatusCode = 200;
if (file != null)
{
Debug.WriteLine("filename: " + file.FileName + " size: " + file.ContentLength + " Type: " + file.ContentType);
Response.Write(file.FileName);
}
Response.Write("\n");
return Content("SUCCESS");
}
JUpload的日志显示这在开发服务器:
_http://paste-it.net/public/j6608f6/
这是与IIS7
FRO m我看到文件通过控制器传递,但在开发服务器中,似乎有一个额外的HTTP代码100引入了错误。
我很乐意的任何建议:)
2010-07-05
barabler