首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

MVC 下传图片有些细节有关问题

2013-02-24 
MVC 上传图片有些细节问题,请指教MVC 用input typefile namemyfile1 input typefile namemy

MVC 上传图片有些细节问题,请指教
MVC 用  <input type="file" name="myfile1" >
        <input type="file" name="myfile2" >
        <input type="file" name="myfile3" >

为什么在本地测试没有问题,用到服务器上就出问题了,一时能上传图,一时不能,有时一次上传多图就会漏图,请问是什么问题
[解决办法]


//像这样取文件,不要用所谓的文件名
for (int i = 0; i < Request.Files.Count; i++)
{
     HttpPostedFile file = Request.Files[i];
     //do something...
}

热点排行