gpt4 book ai didi

c# - 使用 c# 将纯文本(标题)导出到 excel

转载 作者:太空宇宙 更新时间:2023-11-03 16:26:29 24 4
gpt4 key购买 nike

使用 C#、Visual Studio 2008 和 .NET Framework 3.5。我可以直接从DataGridView导出记录到excel,问题是我需要导出其他数据(纯文本)。

现在这是我的 excel:

Excel table without header

这就是我需要显示标题(表格顶部的行)的方式:

excel with more info

这就是我现在的做法:

protected void btnExcel_Click(object sender, EventArgs e)
{
Response.Clear();
Response.AddHeader("content-disposition","attachment;filename=InformeEstudios.xls");
Response.ContentType = "application/vnd.xls";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
myGridView1.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();
}
public override void VerifyRenderingInServerForm(Control control)
{
//base.VerifyRenderingInServerForm(control);
}

//MY METHOD
private void BinData()
{
SqlConnection conex = new SqlConnection("Data Source=xx.xxx.x.xx;Initial
Catalog=MYDATABASE;User ID=MYUSER;Password=MYPASS");
SqlDataAdapter ad = new SqlDataAdapter("select ROW1, ROW2 from MYTABLE", conex);
DataSet ds = new DataSet();
ad.Fill(ds);
myGridView1.DataSource = ds;
myGridView1.DataBind();
}

我怎样才能做到这一点,我怎样才能手动编写这两个标题行。提前致谢!

最佳答案

control.RenderControl(...) 只是输出 html。所以先输出你自己的 html.. 然后调用 rendercontrol。

关于c# - 使用 c# 将纯文本(标题)导出到 excel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12412680/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com