我試圖將包含4個表格的數據集導出到excel工作表中,但不幸的是我不能。我有代碼將數據表導出爲excel。因此,我沒有使用數據集,而是調用了我的代碼中的「ExportToExcel」函數,將數據表導出爲excel 4次。但一旦它創建了第一張紙,就會停止控制流程。控制不調用第二函數(「ExportToExcel(dsResult.Tables [2],‘AthleteSentCount’);」)以下是代碼將數據集導出到asp.net中的Excel工作表中c#
protected void ExportToExcel(object sender, EventArgs e)
{
ExportToExcel(dsResult.Tables[3], "AthleteInboxCount");
ExportToExcel(dsResult.Tables[2], "AthleteSentCount");
ExportToExcel(dsResult.Tables[0], "CoachInboxCount");
ExportToExcel(dsResult.Tables[1], "CoachSentCount");
}
void ExportToExcel(DataTable dt, string FileName)
{
if (dt.Rows.Count > 0)
{
string filename = FileName + ".xls";
System.IO.StringWriter tw = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
DataGrid dgGrid = new DataGrid();
dgGrid.DataSource = dt;
dgGrid.DataBind();
//Get the HTML for the control.
dgGrid.RenderControl(hw);
//Write the HTML back to the browser.
//Response.ContentType = application/vnd.ms-excel;
Response.ContentType = "application/vnd.ms-excel";
Response.AppendHeader("Content-Disposition",
"attachment; filename=" + filename + "");
this.EnableViewState = false;
Response.Write(tw.ToString());
Response.End();
}
}
如果任何身體知道到數據集導出到Excel中與條形圖請幫助我。否則,請給出解決問題的辦法。
在此先感謝。
ü[R什麼問題越來越在這? – SANDEEP
感謝您的回覆。一旦它創建了第一張Excel表格,即一旦「ExportToExcel(dsResult.Tables [3],」AthleteInboxCount「);」函數得到了執行 –
ys爲什麼不呢?嘗試循環傳遞datatabe直到數據集長度爲 – SANDEEP