当前位置: 代码迷 >> ASP.NET >> Datagrid checkbox 勾选 批量上载
  详细解决方案

Datagrid checkbox 勾选 批量上载

热度:8337   发布时间:2013-02-25 00:00:00.0
Datagrid checkbox 勾选 批量下载
百度搜索 Datagrid checkbox 勾选 批量下载,
居然没有相关的例子!!!

请高手们帮我排忧解难
------最佳解决方案--------------------------------------------------------
for (i = 0; i < DataGrid1.Items.Count; i++)
{
CheckBox cb = (CheckBox)DataGrid1.Items[i].FindControl("checkbox1");
if(cb.checked)
{
下载code
}
}


------其他解决方案--------------------------------------------------------
这是silverlight的控件吗?
------其他解决方案--------------------------------------------------------
Response.Clear();
            Response.ClearHeaders();
            Response.Buffer = false;
            Response.ContentType = "application/octet-stream";
            Response.ContentEncoding = System.Text.Encoding.UTF8;
            String filename = HttpUtility.UrlEncode(取出数据库中下载文件名称, System.Text.Encoding.UTF8);    //对中文文件名进行HTML转码
            Response.AddHeader("Content-Disposition", "attachment; filename=" + filename + model.FILEEXT);
            Response.CacheControl = "public";
            Response.BinaryWrite((Byte[])存放二进制的字段值);
            Response.Flush();
            Response.End();

------其他解决方案--------------------------------------------------------
引用:
这是silverlight的控件吗?


不是
------其他解决方案--------------------------------------------------------
引用:
C# code?



1234567891011

Response.Clear();             Response.ClearHeaders();             Response.Buffer = false;             Response.ContentType = "application/octet-stream";             ……



你这个方法只适合单个文件下载
------其他解决方案--------------------------------------------------------
循环勾中的,
------其他解决方案--------------------------------------------------------
如果考虑到用户体验,可以在服务器端把用户选择的文件打个ZIP包,只需要下载一个文件就可以了。
使用SharpZipLib就可以。
------其他解决方案--------------------------------------------------------
引用:
如果考虑到用户体验,可以在服务器端把用户选择的文件打个ZIP包,只需要下载一个文件就可以了。
使用SharpZipLib就可以。


我觉得还是引用Ionic.Zip.dll比较好,可是哪里可以快捷地下载到Ionic.Zip.dll啊?
CSDN下载的那个Ionic.Zip.dll还要积分
------其他解决方案--------------------------------------------------------
引用:
引用:C# code?



1234567891011

Response.Clear();             Response.ClearHeaders();             Response.Buffer = false;             Response.ContentType = "a……
  相关解决方案