标题:把数据导入到固定的excl中
只看楼主
klfo
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2006-11-7
 问题点数:0 回复次数:1 
把数据导入到固定的excl中
怎么把把数据导入到固定的excl中啊!?就是说比如d:盘中有一个已经做好的excl样式,里面都已经把每列的函数公式做好了,现在要把数据库中的一个或两个字段中的数据抓进去 怎么弄啊?
搜索更多相关主题的帖子: excl中 数据库 字段 函数 公式 
2007-04-06 11:17
cyyu_ryh
Rank: 8Rank: 8
等 级:贵宾
威 望:45
帖 子:1899
专家分:176
注 册:2006-10-21
得分:0 

这个只是简单导出,你可以在红色处修改下,具体没做过


#region 导出报表
protected void Button6_Click(object sender, EventArgs e)
{
Export("application/ms-excel", "学生成绩报表.xls");


}
private void Export(string FileType, string FileName)
{
Response.Charset = "GB2312";
Response.ContentEncoding = System.Text.Encoding.UTF7;
Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, Encoding.UTF8).ToString());
Response.ContentType = FileType;
this.EnableViewState = false;
StringWriter tw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(tw);
GridView3.RenderControl(hw);
Response.Write(tw.ToString());
Response.End();
}

public override void VerifyRenderingInServerForm(Control control)
{
//必须要
}

#endregion


有事无事都密我. MSN: cyyu_ryh@hotmail.co.jp E-mail: cyyu_ryh@
2007-04-06 12:41



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-129679-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.749623 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved