c#大圣之路笔记——c# 从DataGrid中导出数据 Session

1 ///前端代码
2 <tr>
3             <td align="right">
4                 <asp:Button ID="btnExport" runat="server" Text="导出错误数据" CssClass="fieldButton" OnClick="btnExport_Click"   style="  height:24px; width:100px"></asp:Button>
5             </td>
6         </tr>
 1 ///前端代码
 2  <tr>
 3             <td colspan="4">
 4              <asp:DataGrid ID="GridMain" runat="server" Width="100%" AutoGenerateColumns="False"
 5                  AllowPaging="True" PageSize="20" AllowSorting="True" DataMember="" OnPageIndexChanged="GridMain_PageIndexChanged"
 6                   AlternatingItemStyle-BackColor="#EBE9E9">
 7                   <AlternatingItemStyle CssClass="datagridAlternating" ></AlternatingItemStyle>
 8                   <HeaderStyle CssClass="tableHead" Height="22" ></HeaderStyle>
 9                   <Columns>
10                         <asp:BoundColumn DataField="errorMessage" HeaderText="错误原因">
11                             <ItemStyle HorizontalAlign="Center" Width="8%" ></ItemStyle>
12                         </asp:BoundColumn>
13                          <asp:BoundColumn DataField="GID" HeaderText="GID">
14                             <ItemStyle HorizontalAlign="Center" Width="4%" ></ItemStyle>
15                         </asp:BoundColumn>
16
17                   </Columns>
18                    <PagerStyle Position="Top" Mode="NumericPages"></PagerStyle>
19               </asp:DataGrid>
20
21             </td>
22          </tr>
  1 //后台代码
  2    private DataTable Err_dt;
  3    private string tableName;
  4
  5

//通过把table中的值放在 Session中,绑定到datagrid中
    Session[tableName] = Err_dt;

  6
  7 private void bindNextPage(int p)
  8         {
  9             tableName = ViewState["TableName"].ToString();
 10             Err_dt = (DataTable)Session[tableName];
 11             if (ViewState["Sort"].ToString() != "")
 12             {
 13                 DataView dv = new DataView(Err_dt);
 14                 dv.Sort = ViewState["Sort"].ToString();
 15                 GridMain.DataSource = dv;
 16             }
 17             else
 18             {
 19                 GridMain.DataSource = Err_dt;
 20             }
 21
 22             GridMain.CurrentPageIndex = p;
 23             GridMain.DataBind();
 24             return;
 25         }
 26
 27     protected void btnExport_Click(object sender, EventArgs e)
 28         {
 29             GridMain.AllowPaging = false;
 30             GridMain.AllowSorting = false;
 31
 32             bindNextPage(0);
 33
 34             Export(GridMain, "ChannelStoreErrorList.xls", "ChannelStoreErrorList", "application/ms-excel");
 35
 36             GridMain.AllowPaging = true;
 37             GridMain.AllowSorting = false;
 38         }
 39         protected void GridMain_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
 40         {
 41             currentPageIndex = e.NewPageIndex;
 42             this.GridMain.CurrentPageIndex = currentPageIndex;
 43             //DataTable Err_dt = new DataTable();
 44             //Err_dt = BindERData();
 45             GridMain.DataSource = Err_dt;
 46             GridMain.DataBind();
 47         }
 48
 49
 50         #region  Export to the excel
 51
 52
 53         // Export to the excel
 54         private void Export(System.Web.UI.WebControls.DataGrid dg, string fileName, string fn, string typeName)
 55         {
 56             System.Web.HttpResponse httpResponse = Page.Response;
 57             httpResponse.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
 58             httpResponse.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
 59             httpResponse.ContentType = typeName;
 60             System.IO.StringWriter tw = new System.IO.StringWriter();
 61             System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
 62             dg.RenderControl(hw);
 63
 64             //httpResponse.Write(tw.ToString());
 65             //httpResponse.End();
 66             string filePath = Server.MapPath("..") + fn + DateTime.Now.Ticks.ToString() + new Random().Next(100).ToString();
 67             System.IO.StreamWriter sw = System.IO.File.CreateText(filePath);
 68             sw.Write(tw.ToString());
 69             sw.Close();
 70             DownFile(httpResponse, fileName, filePath);
 71
 72             httpResponse.End();
 73         }
 74
 75         private bool DownFile(System.Web.HttpResponse Response, string fileName, string fullPath)
 76         {
 77             try
 78             {
 79                 Response.ContentType = "application/octet-stream";
 80
 81                 Response.AppendHeader("Content-Disposition", "attachment;filename=" +
 82                 HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8) + ";charset=GB2312");
 83                 System.IO.FileStream fs = System.IO.File.OpenRead(fullPath);
 84                 long fLen = fs.Length;
 85                 int size = 102400;//每100K同时下载数据
 86                 byte[] readData = new byte[size];//指定缓冲区的大小
 87                 if (size > fLen) size = Convert.ToInt32(fLen);
 88                 long fPos = 0;
 89                 bool isEnd = false;
 90                 while (!isEnd)
 91                 {
 92                     if ((fPos + size) > fLen)
 93                     {
 94                         size = Convert.ToInt32(fLen - fPos);
 95                         readData = new byte[size];
 96                         isEnd = true;
 97                     }
 98                     fs.Read(readData, 0, size);//读入一个压缩块
 99                     Response.BinaryWrite(readData);
100                     fPos += size;
101                 }
102                 fs.Close();
103                 FileInfo FI = new FileInfo(fullPath);
104                 if (FI.Exists)
105                 {
106                     FI.Delete();
107                 }
108                 return true;
109             }
110             catch
111             {
112                 return false;
113             }
114         }
115
116         #endregion
时间: 2024-10-17 08:47:07

c#大圣之路笔记——c# 从DataGrid中导出数据 Session的相关文章

SQL大圣之路笔记——SQL 获取excel中的数据

1 select 2 --case (isnumeric(CMF_No)) when 1 then Convert(decimal(18,0),CMF_No) 3 --else Convert(nvarchar(255),CMF_No) end as CMF_No,Disti_Name, 4 --case (isnumeric(Disti_Invoice_Num)) when 1 then Convert(decimal(18,0),Disti_Invoice_Num) else 'sss' e

SQL大圣之路笔记——SQL学习笔记

1.复习->自连接 针对于什么结构的表做自连接 关系列引用本表的主键列信息 这种表不是单一的含义->外连接 left join right join full join->case子句 必须出现在select语句中 完成选择功能->常用全局变量:@@identity,@@error->over子句:结合编号.聚合使用 sum(ocount) over() 开窗函数:将多行数据进行划区 over(partition by 列名 order by 列名) rank() row_n

SQL大圣之路笔记——SQL 创建索引 index

1 --创建索引的标准:根据实际的sql语句进行分析,’列’出现在where中的次数较多,时间损耗较大,则为这个‘列’建立索引, 2 3 --注意:不是越多越好,因为没建立一个‘列’索引,都要排序存储一次,会让数据库文件变大 4 5 6 --创建索引 7 create index index_name 8 on 表名(列名)

c#大圣之路笔记——TFS解决离职人员文件签出遗留签入问题

方法二: 使用 MSBuild Sidekick MSBuild Sidekick 是VS的一个第三方工具套件,使用此工具的TFS账号必须要有一定的权限,以下简单说明使用方法. 首先至 http://www.attrice.info/downloads/index.htm 下载 Sidekick 安装档,关闭VS安装此工具,安装完成后在VS工具列的「工具」标签中会多出一个「Team Foundation Sidekick」选项,选择到该选项内的「Status Sidekick」选项. 选择后会跳

SQL大圣之路笔记——把数据库中表里的数据导出成Excel(Copy时,会因分隔符问题导致许多数据存放在一个单元格中)

1.选中DB, 右击选择"Tasks",选中"Export Data" 点击. 2.点击"Next", Authentication 选择使用 "Windows 用户名认证" or "SQL Server 用户名,密码认证",点击"Next".    3.保存文件格式:"Excel", 选择保存文件的路径.Excel 版本,点击"Next".-&g

c#大圣之路笔记——c#编程之@的3种作用

1.忽略转义字符例如string fileName = "D:\文本文件\text.txt";使用@后string fileName = @"D:文本文件\text.txt"; 2.让字符串跨行例如string strSQL = "SELECT * FROM HumanResources.Employee AS e"    " INNER JOIN Person.Contact AS c"    " ON e.Con

c#大圣之路笔记——c# DataGrid checkbox 操作

1 ///html 2 3 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="xOEMStoreNominationForCAM.aspx.cs" EnableEventValidation="false" Inherits="PRCSales_external.Store.xOEMStoreNominationForCAM" %>

SQL大圣之路笔记——把Excel中的数据通过Access导入到DataBase中

把Excel中的数据通过Access导入到DataBase中 1.打开Access ,点击“EXTERNAL DATA",选择上传”excel",选中需要导入的excel,点击ok. 2.选择excel中需要上传数据的sheet,点击”next",再点击“next”,选择列明,更改 Data Type (Short Text类型导入后会成为nvarchar);点击“next”,再点击“next” ,设定导入DB之后的表名,点击“finish”. 3.右击表名,点击“Expor

SQL大圣之路笔记——SQL 行转列,列转行

1 /*普通行列转换 2 (爱新觉罗.毓华 2007-11-18于海南三亚) 3 4 假设有张学生成绩表(tb)如下: 5 Name Subject Result 6 张三 语文 74 7 张三 数学 83 8 张三 物理 93 9 李四 语文 74 10 李四 数学 84 11 李四 物理 94 12 */ 13 14 ------------------------------------------------------------------------- 15 /* 16 想变成 1