|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
数据挖掘有点高深的,主要估计就是使用一些算法提取一些实用的数据。学好数据挖掘的话可以应聘baidu或者google,但是一般人家对算法的要求听高的。你最好还是学点应用型的吧。这种主要是研究型的。asp.net|datagrid|datagrid控件|excel|技能一datagrid控件热葺出到excel文件的demo.
天生EXCEL文件#region天生EXCEL文件
publicvoidsetToExcel()
{
//Response.Clear();
//Response.Buffer=true;
//Response.Charset="utf-8";
if(eformsn.Text=="")
{
DataGrid1.Visible=false;
Label1.Text="要R进EXCEL,先进申翁!";
Label1.Visible=true;
}
else
{
dl.DataSource=DB("query","select*frommsi_eol_list_linewhereeformsn="+eformsn.Text+"orderbyeformsn").Tables[0].DefaultView;
dl.DataBind();
//上面@行很主要,attachment当硎咀楦郊螺d,您能够改成online在打_
//filename=FileFlow.xls指定出文件的名Q,注重其U展名和指定文件型符合,能够椋.doc.xls.txt.htm
Response.AppendHeader("Content-Disposition","attachment;filename=EOL_"+eformsn.Text+".xls");
Response.ContentEncoding=System.Text.Encoding.GetEncoding("utf-8");
//Response.ContentType指定文件型能够application/ms-excel,application/ms-word,application/ms-txt,application/ms-html或其他g[器可间接撑持文n
Response.ContentType="application/ms-excel";
dl.EnableViewState=false;
System.IO.StringWriteroStringWriter=newSystem.IO.StringWriter();
System.Web.UI.HtmlTextWriteroHtmlTextWriter=newSystem.Web.UI.HtmlTextWriter(oStringWriter);
//⒛定到进流出
//this暗示出本,你也能够定datagrid,或其他撑持obj.RenderControl()傩缘目丶
dl.RenderControl(oHtmlTextWriter);
//this.DataBind.RenderControl(oHtmlTextWriter);
Response.Write(oStringWriter.ToString());
Response.End();
}
}
#endregion
感觉很多控件都必须自己去写代码;用了WebMatrix感觉也不是很好,毕竟没有很强的WYSIWYG效果。现在就不知道如何是好了。 |
|