asp.net 打印和数据导出功能
如何实现图片上的功能,图片上用的是access里面的窗体,我想把他实现在网页上,如何实现,求,在线等,急这是页面这是打印那个这是数据导出到excel中...
如何实现图片上的功能,图片上用的是access里面的窗体,我想把他实现在网页上,如何实现,求,在线等,急
这是页面
这是打印那个
这是数据导出到excel中 展开
这是页面
这是打印那个
这是数据导出到excel中 展开
2个回答
展开全部
可以使用网页的打印来实现吧。 导出电子表格的相关代码挺多的。
我提供一个给您:
public override void VerifyRenderingInServerForm(Control control)
{
}
public void DGToExcel(System.Web.UI.Control ctl)
{
HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=Excel.xls");
HttpContext.Current.Response.Charset = "UTF-8";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.Default;
HttpContext.Current.Response.ContentType = "application/ms-excel";
ctl.Page.EnableViewState = false;
System.IO.StringWriter tw = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
ctl.RenderControl(hw);
HttpContext.Current.Response.Write(tw.ToString());
HttpContext.Current.Response.End();
}
protected void Button2_Click(object sender, EventArgs e)
{
DGToExcel(this.GridView1);
}
我提供一个给您:
public override void VerifyRenderingInServerForm(Control control)
{
}
public void DGToExcel(System.Web.UI.Control ctl)
{
HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=Excel.xls");
HttpContext.Current.Response.Charset = "UTF-8";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.Default;
HttpContext.Current.Response.ContentType = "application/ms-excel";
ctl.Page.EnableViewState = false;
System.IO.StringWriter tw = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
ctl.RenderControl(hw);
HttpContext.Current.Response.Write(tw.ToString());
HttpContext.Current.Response.End();
}
protected void Button2_Click(object sender, EventArgs e)
{
DGToExcel(this.GridView1);
}
追问
请问可不可以加上注释?有点看不到,我是菜鸟
来自:求助得到的回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询