当前位置:编程学习 > C#/ASP.NET >>

asp.net HttpPostedFile 的问题

我在用MVC来实现uploadify上传文件,在获取文件的时候HttpPostedFile file = Request.Files["Filedata"],却出错了错误 1 无法将类型“System.Web.HttpPostedFileBase”隐式转换为“System.Web.HttpPostedFile”,很无奈,弄了很久,都不成功,请问哪个大侠有过类似的问题,在线求解,谢谢 --------------------编程问答-------------------- foreach (HttpPostedFile file in Request.Files)
 {   
  HttpPostedFileBase filebase = new HttpPostedFileWrapper(file);    
 // .. 
foreach (string inputTagName in HttpContext.Current.Request.Files) {     HttpPostedFileBase filebase =new HttpPostedFileWrapper(HttpContext.Current.Request.Files[inputTagName]);     
--------------------编程问答-------------------- 谢谢2楼的,但也出错了,无法将类型为“System.String”的对象强制转换为类型“System.Web.HttpPostedFile”。 --------------------编程问答-------------------- 没人遇到过这种问题吗 --------------------编程问答--------------------

HttpPostedFileBase file = Request.Files["Filedata"];
string nm=Path.GetFileName(file.FileName);
file.SaveAs(Server.MapPath(nm));
--------------------编程问答-------------------- form加属性 enctype="multipart/form-data" --------------------编程问答-------------------- ??解决了吗,我也遇到相同问题了
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,