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”。 --------------------编程问答-------------------- 没人遇到过这种问题吗 --------------------编程问答--------------------
--------------------编程问答-------------------- form加属性 enctype="multipart/form-data" --------------------编程问答-------------------- ??解决了吗,我也遇到相同问题了
HttpPostedFileBase file = Request.Files["Filedata"];
string nm=Path.GetFileName(file.FileName);
file.SaveAs(Server.MapPath(nm));
补充:.NET技术 , ASP.NET