把DataGrid导出成Excel或者Word文档
1
private void Export(System.Web.UI.WebControls.DataGrid dg,string fileName,string typeName)
2
{
3
4
System.Web.HttpResponse httpResponse = Page.Response;
5
httpResponse.AppendHeader("Content-Disposition","attachment;filename="+HttpUtility.UrlEncode(fileName,System.Text.Encoding.UTF8));
6
httpResponse.ContentEncoding=System.Text.Encoding.GetEncoding("GB2312");
7
httpResponse.ContentType = typeName;
8
System.IO.StringWriter tw = new System.IO.StringWriter() ;
9
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter (tw);
10
dg.RenderControl(hw);
11
string filePath = Server.MapPath("..")+fileName;
12
System.IO.StreamWriter sw = System.IO.File.CreateText(filePath);
13
sw.Write(tw.ToString());
14
sw.Close();
15
16
DownFile(httpResponse,fileName,filePath);
17
httpResponse.End();
18
}
19
20
private bool DownFile(System.Web.HttpResponse Response,string fileName,string fullPath)
21
{
22
try
23
{
24
Response.ContentType = "application/octet-stream";
25
26
Response.AppendHeader("Content-Disposition","attachment;filename=" +
27
HttpUtility.UrlEncode(fileName,System.Text.Encoding.UTF8) + ";charset=GB2312");
28
System.IO.FileStream fs= System.IO.File.OpenRead(fullPath);
29
long fLen=fs.Length;
30
int size=102400;//每100K同时下载数据
31
byte[] readData = new byte[size];//指定缓冲区的大小
32
if(size>fLen)size=Convert.ToInt32(fLen);
33
long fPos=0;
34
bool isEnd=false;
35
while (!isEnd)
36
{
37
if((fPos+size)>fLen)
38
{
39
size=Convert.ToInt32(fLen-fPos);
40
readData = new byte[size];
41
isEnd=true;
42
}
43
fs.Read(readData, 0, size);//读入一个压缩块
44
Response.BinaryWrite(readData);
45
fPos+=size;
46
}
47
fs.Close();
48
System.IO.File.Delete(fullPath);
49
return true;
50
}
51
catch
52
{
53
return false;
54
}
55
}
56
57
58
private void btnWord_Click(object sender, System.EventArgs e)
59
{
60
Export(dataGrid,"FileName.doc","application/ms-word");
61
62
}
63
64
private void btnExcel_Click(object sender, System.EventArgs e)
65
{
66
Export(dataGrid,"FileName.xls","application/ms-excel");
67
}

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

· 大模型 Token 究竟是啥:图解大模型Token
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 感觉程序员要被 AI 淘汰了?学什么才有机会?
· Dify开发必备:分享8个官方文档不曾解释的关键技巧
· 活动中台系统慢 SQL 治理实践
· “你觉得客户需要”是杀死TA的最后一根稻草 | IPD集成产品开发
· BotSharp + MCP 三步实现智能体开发