真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

asp.net+Ligerui如何實(shí)現(xiàn)grid導(dǎo)出Excel和Word-創(chuàng)新互聯(lián)

這篇文章給大家分享的是有關(guān)asp.net+Ligerui如何實(shí)現(xiàn)grid導(dǎo)出Excel和Word的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

成都創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:做網(wǎng)站、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的日土網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

具體如下:

下面采用的導(dǎo)EXCEL方法,適合不翻頁的grid,而且無需再讀一次數(shù)據(jù)庫,對(duì)于翻頁的grid來說,要導(dǎo)全部,當(dāng)然后臺(tái)要再讀一次數(shù)據(jù)庫,這種導(dǎo)EXCEL方法baidu一大堆

代碼部分:

grid.htm:




  
  
  
  
  
  
  
  
  
    $(function () {
      $("#toptoolbar").ligerToolBar({ items: [
            {text: '導(dǎo)出Excel',id:'excel',icon:'print',click:itemclick},
            {text: '導(dǎo)出Word' ,id:'word',icon:'print',click:itemclick}
          ]
      });
      $("#maingrid").ligerGrid({
        columns: [
          { display: '主鍵', name: 'ProductID', type: 'int', totalSummary:{type: 'count'}},
          { display: '產(chǎn)品名', name: 'ProductName', align: 'left', width: 200 },
          { display: '單價(jià)', name: 'UnitPrice', align: 'right', type:'float',totalSummary:{render: function (suminf, column, cell){return '
較大值:' + suminf.max + '
';},align: 'left'}},           { display: '倉庫數(shù)量', name: 'UnitsInStock', align: 'right', type: 'float',totalSummary:{type: 'sum'}}         ],         dataAction: 'local',         data: AllProductData, sortName: 'ProductID',         showTitle: false, totalRender: f_totalRender,         width: '100%', height: '100%',heightDiff:-10       });       $("#pageloading").hide();     });     function f_totalRender(data, currentPageData)     {       return "總倉庫數(shù)量:"+data.UnitsInStockTotal;     }     function itemclick(item)     {       grid = $("#maingrid").ligerGetGridManager();       if(item.id)       {         switch (item.id)         {           case "excel":$.ligerDialog.open({url: "../service/print.aspx?exporttype=xls"});return;           case "word":$.ligerDialog.open({url: "../service/print.aspx?exporttype=doc"});return;         }       }     }      
  
  

導(dǎo)出頁面print.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="print.aspx.cs" Inherits="example" EnableEventValidation = "false" ValidateRequest="false" %>


  
  
  
  
  
    function GetQueryString(name)
    {
      var reg = new RegExp("(^|&)"+name+"=([^&]*)(&|$)");
      var r= window.location.search.substr(1).match(reg);
      if (r!=null) return unescape(r[2]);return null;
    }
    function gethtml(g)
    {
      parent.$(".l-grid-header-table",g).attr("border","1");
      parent.$(".l-grid-body-table",g).attr("border","1");
      $("#hf").val(
            parent.$(".l-grid-header",g).html()+       //這里把表頭撈出來
            parent.$(".l-grid-body-inner",g).html()+     //表身,具體數(shù)據(jù)
            parent.$(".l-panel-bar-total",g).html()+"
"+ //這是全局匯總,1.1.0版本新添加的             parent.$(".l-bar-text",g).html()         //這是翻頁訊息             );       parent.$(".l-grid-header-table",g).attr("border","0");       parent.$(".l-grid-body-table",g).attr("border","0");      // parent.$(".l-grid-header-table",g).removeAttr("border");      // parent.$(".l-grid-body-table",g).removeAttr("border");     }     function init()     {       if (GetQueryString("exporttype")=="xls")       {         document.getElementById("btnxls").click();       }       else       {         document.getElementById("btndoc").click();       }       setTimeout(function ()       {         parent.$.ligerDialog.close();       }, 3000);     }         導(dǎo)出中...                  

print.aspx.cs

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
namespace service
{
  public partial class print : System.Web.UI.Page
  {
    protected void Page_Load(object sender, EventArgs e)
    {
      if (!IsPostBack)
      {
      }
    }
    void exportexcel()
    {
      Response.Clear();
      Response.Buffer = true;
      Response.Charset = "utf-8";
      Response.AppendHeader("Content-Disposition", "attachment;filename=tmp.xls");
      Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
      Response.ContentType = "application/ms-excel";
      this.EnableViewState = false;
      System.IO.StringWriter oStringWriter = new System.IO.StringWriter();
      System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
      oHtmlTextWriter.WriteLine(hf.Value);
      Response.Write(oStringWriter.ToString());
      Response.End();
    }
    void exportword()
    {
      Response.Clear();
      Response.Buffer = true;
      Response.Charset = "utf-8";
      Response.AppendHeader("Content-Disposition", "attachment;filename=tmp.doc");
      Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
      Response.ContentType = "application/ms-word";
      this.EnableViewState = false;
      System.IO.StringWriter oStringWriter = new System.IO.StringWriter();
      System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
      oHtmlTextWriter.WriteLine(hf.Value);
      Response.Write(oStringWriter.ToString());
      Response.End();
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
      exportexcel();
    }
    protected void Button2_Click(object sender, EventArgs e)
    {
      exportword();
    }
  }
}

原理:在點(diǎn)導(dǎo)出按鈕的時(shí)候,彈一個(gè)print.aspx頁面,這個(gè)頁面把grid的html傳給自己一個(gè)叫hf的hidden里面,然后后臺(tái)response輸出這個(gè)html

感謝各位的閱讀!關(guān)于“asp.net+Ligerui如何實(shí)現(xiàn)grid導(dǎo)出Excel和Word”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


網(wǎng)站標(biāo)題:asp.net+Ligerui如何實(shí)現(xiàn)grid導(dǎo)出Excel和Word-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://weahome.cn/article/ddgjhc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部