标签:style blog color 使用 os 文件 for art
在asp.net中使用<inpu nme=“file” type=“file”>客户端控件上传文件,
代码大致如下:
for(int i=0; i< Request.Files.Count; i++) //这里就是获取不到file的个数 { if(Request.Files[i].ContentLength > 0) { Response.Write (Request.Files [i].FileName ); } }
在我的页面中,Request.Files.Count怎么弄都是0,这时候需要在form表单中添加
enctype="multipart/form-data"
举例:<form id="Form1" method="post" encType="multipart/form-data" runat="server" >
这样就能取得数量了。
在asp.net中用客户端上传控件上传文件( 需要注意的),布布扣,bubuko.com
标签:style blog color 使用 os 文件 for art
原文地址:http://www.cnblogs.com/ygyxinyu/p/3892922.html