关于Uploadify文件上传 io error

 
    
    
    
    

下面是UploadHandler.ashx里的代码 网上都有,自己记下以后忘记了可以拿出来看看

 public void ProcessRequest(HttpContext context)
    {
        context.Response.ContentType = "text/plain";
        context.Response.Charset = "utf-8";
      
        HttpPostedFile file = context.Request.Files["Filedata"];
        string uploadPath =
            HttpContext.Current.Server.MapPath(@context.Request["folder"]) + "\\";

        if (file != null)
        {
            if (!System.IO.Directory.Exists(uploadPath))
            {
                System.IO.Directory.CreateDirectory(uploadPath);
            }
            file.SaveAs(uploadPath + file.FileName);
            //下面这句代码缺少的话,上传成功后上传队列的显示不会自动消失
            context.Response.Write("1");
        }
        else
        {
            context.Response.Write("0");
        }
    }


 

一切都很正常 但是上传文件大于5M时 就出现 IO Error的错误

 

 

解决方法  参见第一段代码  加入 'sizeLimit': '99999999999'  设置文件的大小

仅仅是这样 依旧会报错 还需要在web.config 的中加入

 

再试一次 解决了

 

PS 上传按钮本来是英文的 在JS 设置一下你想要按钮的背景图片就好了

'buttonImg': 'images/updaload.jpg',
 

 

你可能感兴趣的:(关于Uploadify文件上传 io error)