佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > ASP.NET利用MD.DLL轉(zhuǎn)EXCEL具體實現(xiàn)

ASP.NET利用MD.DLL轉(zhuǎn)EXCEL具體實現(xiàn)

熱門標(biāo)簽:Linux服務(wù)器 電子圍欄 阿里云 科大訊飛語音識別系統(tǒng) 銀行業(yè)務(wù) Mysql連接數(shù)設(shè)置 團(tuán)購網(wǎng)站 服務(wù)器配置
前提
引入MD.dll 文件;
下載地址:https://www.jb51.net/dll/MD.dll.html
1、建立無CS文件的DownExcel.aspx 文件
復(fù)制代碼 代碼如下:

%@ Page Language="C#" %>
%@ import Namespace="System.Data" %>
%@ import Namespace="System.Data.SqlClient" %>
%@ import Namespace="MD" %>
script runat="server">
string tableName = "";
string procName ="";
private string selectSql( string selstr )
{
string sp =selstr + " WHERE";
int iwhere;
iwhere=sp.IndexOf("WHERE");
iwhere=iwhere+7;
string sall = Server.UrlDecode(Request.QueryString.ToString());
string[] sparams;
sparams=sall.Split('');
int i=0;
if (sparams.Length>1){
while (isparams.Length){
if (!(sparams[i].StartsWith("table"))){
if ((sparams[i].StartsWith("str") )){
sp=sp+" and " + sparams[i].Replace("=","='").Substring(3) + "'";
}
if ((sparams[i].StartsWith("num") ))
{
sp=sp+" and " + sparams[i].Substring(3) + "";
}
}
i++;
}
}
if (sp.IndexOf("and") >0 ){
sp = (sp.Substring(0,sp.IndexOf("and")) + sp.Substring(sp.IndexOf("and")+3));
}
//sp=sp.Replace("=","='");
if (sp.Lengthiwhere) {
sp=sp.Substring(0,(iwhere-8));
}
return sp;
}
private string selectProc( string selstr )
{
string sp =selstr + " ";
string sall = Server.UrlDecode(Request.QueryString.ToString());
//Server.UrlDecode(Request.QueryString.ToString());
string[] sparams;
sparams=sall.Split('');
int i=0;
if (sparams.Length>1)
{
while (isparams.Length)
{
if (!(sparams[i].StartsWith("procedure")))
{
if ((sparams[i].StartsWith("str") ))
{
sp=sp + "'" + sparams[i].Substring( sparams[i].IndexOf("=")+1) + "',";
}
if ((sparams[i].StartsWith("num") ))
{
sp=sp + sparams[i].Substring( sparams[i].IndexOf("=")+1) + ",";
}
}
i++;
}
}
if (sp.EndsWith(",")){
sp=sp.Substring(0, (sp.Length -1));
}
return sp;
}
private void Page_Load(object sender, System.EventArgs e)
{
// setup connection
//Response.Write(selectSql("start test!"));
string conn = ConfigurationManager.ConnectionStrings["ConnStr"].ConnectionString; /// System.Configuration.ConfigurationSettings.AppSettings["connectionString"];
if (Request.QueryString["table"]== null Request.QueryString["procedure"]==null)
{
this.Response.Write("not supply correct parameters!");
this.Response.End();
return;
}
DataSet ds = new DataSet();
ds.Locale = new System.Globalization.CultureInfo("zh-CN");
//OleDbDataAdapter adapter=new OleDbDataAdapter();
if (!(Request.QueryString["table"]== null ) )
{
/*string test1=selectSql(("SELECT * from " + Request.QueryString["table"]));
this.Response.Write(test1);
this.Response.End();
return;*/
tableName=Request.QueryString["table"];
MD.SqlHelper.FillDataset(conn,System.Data.CommandType.Text ,selectSql(("SELECT * from " + tableName)),ds,new string[] {"down"});
}
if (!(Request.QueryString["procedure"]== null ) )
{
/*string test2=selectProc(("exec " + Request.QueryString["procedure"]));
this.Response.Write(test2);
this.Response.End();
return;*/
procName=Request.QueryString["procedure"];
MD.SqlHelper.FillDataset(conn,System.Data.CommandType.Text ,selectProc(("exec " + procName)),ds,new string[] {"down"});
}
if (ds.Tables[0].Rows.Count==0){
this.Response.Write("條件不符,查詢沒有任何資料!");
return;
}
string downRes="";
if (procName=="")
{
downRes=tableName;
}
else
{
downRes=procName;
}
//OleDbDataAdapter adapter = new OleDbDataAdapter("SELECT * from " + tableName, conn);
//Response.Write(selectSql("SELECT * from " + tableName));
//return;
// open the Database and get the results
this.DataGridDown.DataSource=ds;
this.DataGridDown.DataBind();
this.Response.Clear();
this.Response.Buffer =true;
this.Response.Charset="utf-8";
this.Response.ContentType="application/ms-excel";
this.Response.AppendHeader("content-Disposition","attachment;filename="+downRes+".xls");
this.Response.ContentEncoding =System.Text.Encoding.GetEncoding("utf-8");
//Response.ContentEncoding = System.Text.Encoding.utf-8;
this.EnableViewState =false;
System.IO.StringWriter OStringWriter = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter OHtmlTextWriter = new System.Web.UI.HtmlTextWriter(OStringWriter);
this.DataGridDown.RenderControl(OHtmlTextWriter);
this.Response.Write(OStringWriter.ToString());
this.Response.End();
// if the action is update, well, we update our DB
}
/script>
html>
head>
meta http-equiv="content-type" content="application/x-excel; charset=UTF-8"/>
!-- meta http-equiv="Content-Type" content="application/x-msexcel; charset=iso-8859-1" /> -->
/head>
body>
form runat="server">
asp:DataGrid id="DataGridDown" style="Z-INDEX: 100; POSITION: absolute" runat="server" Height="373px" Width="674px" >
/asp:DataGrid>
!-- Insert content here -->
/form>
/body>
/html>

2、調(diào)用方法
http://localhost:13042/report/downexcel.aspx?procedure=P_PP_SPC_FindCountstrWorkCenterNum=0strStatus=全部strPartno=
注解
P_PP_SPC_FindCoun:存儲過程
WorkcenterNum:參數(shù)
在每個參數(shù)前都要加上‘Str'表示該參數(shù)是字符串型
所以參數(shù)要寫成StrWorkcenterNum
您可能感興趣的文章:
  • ASP.NET實現(xiàn)讀取Excel內(nèi)容并在Web上顯示
  • ASP.NET中上傳并讀取Excel文件數(shù)據(jù)示例
  • asp.net導(dǎo)出excel的簡單方法實例
  • asp.net讀取excel文件的三種方法示例
  • asp.net導(dǎo)出Excel亂碼的原因及解決方法
  • asp.net讀取excel中的數(shù)據(jù)并綁定在gridview
  • asp.net使用npoi讀取excel模板并導(dǎo)出下載詳解
  • asp.net導(dǎo)出Excel類庫代碼分享
  • Asp.Net用OWC操作Excel的實例代碼
  • Asp.net中DataTable導(dǎo)出到Excel的方法介紹
  • ASP.NET(C#)讀取Excel的文件內(nèi)容
  • Asp.Net使用Npoi導(dǎo)入導(dǎo)出Excel的方法

標(biāo)簽:棗莊 衢州 大理 衡水 蚌埠 江蘇 廣元 萍鄉(xiāng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP.NET利用MD.DLL轉(zhuǎn)EXCEL具體實現(xiàn)》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    厦门市| 奇台县| 华池县| 大邑县| 盐源县| 蓝山县| 尉氏县| 天津市| 禄丰县| 株洲县| 柞水县| 家居| 湖州市| 嘉善县| 张家界市| 靖边县| 平度市| 宁南县| 阳江市| 长寿区| 廉江市| 磐安县| 亳州市| 宣恩县| 宝山区| 金华市| 威信县| 天门市| 黑龙江省| 托克托县| 炉霍县| 资溪县| 岳普湖县| 荔浦县| 东城区| 祁阳县| 巴里| 合阳县| 四会市| 定州市| 醴陵市|