|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我有个同学,他是搞Java的,他给我说“Java不是效率低,而是速度慢。”,我不是搞Java的,我实在想不透这句话的含义,难道执行速度不就是效率低吗?难道执行速度慢还成效率高了?asp.net|excel|技能|数据只需将ContentType设置为"application/vnd.ms-excel",暗示以Excel体例输入.
代码以下:
DataToExcel.aspx:
<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="DataToExcel.aspx.cs"Inherits="DataToExcel"%>
<htmlxmlns="http://www.w3.org/1999/xhtml">
<headrunat="server">
<title>DataToExcel</title>
</head>
<body>
<formid="form1"runat="server">
<asp:GridViewID="GridView1"runat="server">
</asp:GridView>
</form>
</body>
</html>DataToExcel.aspx.cs
usingSystem;
usingSystem.Data;
usingSystem.Configuration;
usingSystem.Collections;
usingSystem.Web;
usingSystem.Web.Security;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.WebControls.WebParts;
usingSystem.Web.UI.HtmlControls;
usingSystem.Data.SqlClient;
publicpartialclassDataToExcel:System.Web.UI.Page
{
protectedvoidPage_Load(objectsender,EventArgse)
{
if(!this.IsPostBack)
{
this.Response.ContentType="application/vnd.ms-excel";
stringConnStr="server=localhost;uid=sa;pwd=;database=northwind";
SqlConnectionConn=newSqlConnection(ConnStr);
Conn.Open();
stringsqlcmd="selectlastname,firstname,title,address,cityfromemployees";
SqlCommandcmd=newSqlCommand(sqlcmd,Conn);
SqlDataAdapteradapter=newSqlDataAdapter(cmd);
DataSetds=newDataSet();
adapter.Fill(ds);
this.GridView1.DataSource=ds.Tables[0].DefaultView;
this.GridView1.DataBind();
}
}
}
数据挖掘有点高深的,主要估计就是使用一些算法提取一些实用的数据。学好数据挖掘的话可以应聘baidu或者google,但是一般人家对算法的要求听高的。你最好还是学点应用型的吧。这种主要是研究型的。 |
|