私はMVCアプリケーションに取り組んでおり、テーブルデータをエクスポートする必要があり、次のコードを使用しています:
public ActionResult ExportData()
{
GridView gv = new GridView();
gv.DataSource = db.Studentrecord.ToList();
gv.DataBind();
Response.ClearContent();
Response.Buffer = true;
Response.AddHeader("content-disposition", "attachment; filename=Marklist.xls");
Response.ContentType = "application/ms-excel";
Response.Charset = "";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
gv.RenderControl(htw);
Response.Output.Write(sw.ToString());
Response.Flush();
Response.End();
return RedirectToAction("StudentDetails");
}
これにより、単一のワークシートが作成されます。他のテーブル データを含む別のワークシートが必要です。複数のワークシートでデータをエクスポートする方法を教えてください。