答案:把它直接放在内存中,然后传给客户端
// 创建MemeoryStream
System.IO.MemoryStream ms = new System.IO.MemoryStream();// 写dataset到MemeoryStream
dataset1.WriteXml(ms,System.Data.XmlWriteMode.IgnoreSchema);
// 写dataset到MemeoryStream
dataset1.WriteXml(ms,System.Data.XmlWriteMode.IgnoreSchema);
Response.Clear();
// 下载附件的名字
// 下载附件的名字Response.AddHeader("Content-Disposition", "attachment; filename=Acounts.xml");
// 下载附件的大小,以便让浏览器显示进度条
"Content-Disposition", "attachment; filename=Acounts.xml");// 下载附件的大小,以便让浏览器显示进度条
// 下载附件的大小,以便让浏览器显示进度条Response.AddHeader("Content-Length", ms.Length.ToString());
// 指定浏览器为下载模式
"Content-Length", ms.Length.ToString());// 指定浏览器为下载模式
// 指定浏览器为下载模式Response.ContentType = "application/octet-stream";
// 发送到客户端
"application/octet-stream";// 发送到客户端
// 发送到客户端byte[] b = ms.ToArray();
Response.OutputStream.Write(b,0,b.Length);
Response.End();
}
byte[] b = ms.ToArray();Response.OutputStream.Write(b,0,b.Length);
Response.End();
}
Response.End();}
上一个:DataGrid脚眉显示合计
下一个:OLEDB Resource(Session) Pooling (在Ado开发中使用连接池)