匯出各種格式文件

2022-03-02 14:12:09 字數 2182 閱讀 9805

1、gridview匯出到excel

system.globalization.cultureinfo mycitrad = new system.globalization.cultureinfo("zh-cn", true);

system.io.stringwriter ostringwriter = new system.io.stringwriter(mycitrad);

system.web.ui.htmltextwriter ohtmltextwriter = new system.web.ui.htmltextwriter(ostringwriter);

gridview1.allowpaging = false;//清除分頁

= false; //清除排序     

//setreport();

//控制gridview匯出excel後的樣式

this.gridview1.gridlines = gridlines.both;

this.gridview1.rendercontrol(ohtmltextwriter);

response.output.write(ostringwriter.tostring());

response.flush();

response.end();

= true; //恢復排序   

gridview1.allowpaging = true;  //恢復排序

//setreport(); //再次繫結

}2、gridview匯出到xml

3、匯出到csv

protected void converttocsv_click(object sender, eventargs e)

public void tocsv(string cnstring, string cmdstring, string user_id)

", datetime.today) + string.format("", datetime.now.hour) + string.format("", datetime.now.minute);

string filecontent = string.empty;

foreach (datarow dr in ds.tables[0].rows)//ds是要匯出到csv檔案的dataset

}4、匯出到txt

protected void button_txtdl_click(object sender, eventargs e)

public void totxt(string cnstring, string cmdstring, string user_id)

", datetime.today) + string.format("", datetime.now.hour) + string.format("", datetime.now.minute);

string filecontent = string.empty;

foreach (datarow dr in ds.tables[0].rows)//ds是dataset,即要匯出的資料

C 中匯出PDF格式文件

最近研究將利用gdi 繪製的圖形匯出到pdf文件之中,網上有不少資料。其中利用itextsharp資料較多。同時也可以利用componentone提供的庫匯出pdf文件。兩者呼叫的 都相對簡單,在此不做敘述。主要對比兩者的優缺點 1 itextsharp庫是免費的第三方庫,而componentone...

資料庫之間各種格式匯入匯出

sql server 阻止了對元件 xp cmdshell 的 過程 sys.xp cmdshell 的訪問,因為此元件已作為此伺服器安全配置的一部分而被關閉。系統管理員可以通過使用 sp configure 啟用 xp cmdshell 有關啟用 xp cmdshell 的詳細資訊,請參閱 sql...

sql 各種格式

以2013 12 10 12 56 55為例 convert nvarchar 10 createdate,120 2013 12 10 datepart month,createdate 12 datepart year,createdate 2013 還可以這樣 年select datepart...