2.ASP.NET MVC 中使用Crystal Report水晶報表

来源:http://www.cnblogs.com/caofangsheng/archive/2016/12/09/6150144.html
-Advertisement-
Play Games

上一篇,介紹了怎麼導出Excel文件,這篇文章介紹在ASP.NET MVC中使用水晶報表。 項目源碼下載:https://github.com/caofangsheng93/CrystalReportInMac 前提條件:你需要有VS,SQL Server 當然最重要的就是安裝Crystal Rep ...


上一篇,介紹了怎麼導出Excel文件,這篇文章介紹在ASP.NET MVC中使用水晶報表。 

項目源碼下載:https://github.com/caofangsheng93/CrystalReportInMac

前提條件:你需要有VS,SQL Server 當然最重要的就是安裝Crystal Report。

這裡我提供我百度網盤的安裝文件:http://pan.baidu.com/s/1bpcK3ZD,我這裡是Crystal Report for VS2013的版本。需要其他的版本大家自己去搜去下載。

 

環境搭配好之後,就開始乾,我們先創建資料庫:

USE master 
GO 
IF EXISTS(SELECT * FROM sysdatabases WHERE name='CustomerDB')
DROP DATABASE CustomerDB
GO 
CREATE DATABASE CustomerDB
GO 
USE CustomerDB
GO 
IF EXISTS(SELECT * FROM sysobjects WHERE name='Customers')
DROP TABLE Customers
GO 
CREATE TABLE Customers
(
CustomerID INT NOT NULL PRIMARY KEY IDENTITY(1,1),
CustomerName NVARCHAR(50) NULL,
CustomerEmail NVARCHAR(50) NULL,
CustomerZipCode INT NULL,
CustomerCountry NVARCHAR(50) NULL,
CustomerCity NVARCHAR(50) NULL
)

--插入測試數據
INSERT INTO dbo.Customers
SELECT N'李易峰','李易峰@163.com','436500',N'中國',N'深圳'
UNION ALL
SELECT N'孫尚香','孫尚香@163.com','436501',N'中國',N'上海'
UNION ALL
SELECT N'蘭陵王','蘭陵王@163.com','436502',N'中國',N'北京'
UNION ALL
SELECT N'孫悟空','孫悟空@163.com','436503',N'中國',N'武漢'
UNION ALL
SELECT N'曹操','曹操@163.com','436504',N'中國',N'杭州'

 

然後,我們的項目是這樣的:

 

弄好資料庫之後,我們新建一個ADO.NET實體數據模型:命名隨便,我這裡命名:DbContextCustomer

 

 

接著就是新建一個水晶報表了:

 

Next, window will pop up as given below, in this example we are going to choose "As a Blank Report" option, and click OK.

 

After clicking OK, our Crystal Report has been created with success.  The next step is to right click on Database Fields > Database Expert…

 

Now, a new window will pop up as shown below. We need to select model which will be using to display data (in this case our model is Customer).

After clicking OK, we proceed to drag all fields to the report as shown below.

 

 

然後就是創建控制器:

 public class CustomerController : Controller
    {
        private CustomerDBEntities context = new CustomerDBEntities();  

        public ActionResult Index()
        {
           var customerList= context.Customers.ToList();
           return View(customerList);
        }

        public ActionResult ExportCustomers()
        {
            List<Customer> allCustomer = new List<Customer>();
           
            allCustomer = context.Customers.ToList();
            ReportDocument rd = new ReportDocument();
            rd.Load(Path.Combine(Server.MapPath("~/CrystalReports"), "ReportCustomer.rpt"));
            rd.SetDataSource(ToDataTable<Customer>(allCustomer));
            Response.Buffer = false;
            Response.ClearContent();
            Response.ClearHeaders();  
            Stream stream = rd.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);  
            stream.Seek(0, SeekOrigin.Begin);  
            return File(stream, "application/pdf", "CustomerList.pdf");  

        }

        /// <summary>    
        /// 將泛型集合類轉換成DataTable    
        /// </summary>    
        /// <typeparam name="T">集合項類型</typeparam>    
        /// <param name="list">集合</param>    
        /// <param name="propertyName">需要返回的列的列名</param>    
        /// <returns>數據集(表)</returns>    
        public static DataTable ToDataTable<T>(IList<T> list, params string[] propertyName)
        {
            List<string> propertyNameList = new List<string>();
            if (propertyName != null)
                propertyNameList.AddRange(propertyName);
            DataTable result = new DataTable();
            if (list.Count > 0)
            {
                PropertyInfo[] propertys = list[0].GetType().GetProperties();
                foreach (PropertyInfo pi in propertys)
                {
                    if (propertyNameList.Count == 0)
                    {
                        result.Columns.Add(pi.Name, pi.PropertyType);
                    }
                    else
                    {
                        if (propertyNameList.Contains(pi.Name))
                            result.Columns.Add(pi.Name, pi.PropertyType);
                    }
                }

                for (int i = 0; i < list.Count; i++)
                {
                    ArrayList tempList = new ArrayList();
                    foreach (PropertyInfo pi in propertys)
                    {
                        if (propertyNameList.Count == 0)
                        {
                            object obj = pi.GetValue(list[i], null);
                            tempList.Add(obj);
                        }
                        else
                        {
                            if (propertyNameList.Contains(pi.Name))
                            {
                                object obj = pi.GetValue(list[i], null);
                                tempList.Add(obj);
                            }
                        }
                    }
                    object[] array = tempList.ToArray();
                    result.LoadDataRow(array, true);
                }
            }
            return result;
        }  
    }

 

 視圖代碼:

@model IEnumerable<CryStalReportInMvc.Customer>

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

<p>
    @Html.ActionLink("Create New", "Create")
    <div><a href="@Url.Action("ExportCustomers")">Report PDF</a></div>
</p>
<table class="table">
    <tr>
        <th>
            @Html.DisplayNameFor(model => model.CustomerName)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.CustomerEmail)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.CustomerZipCode)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.CustomerCountry)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.CustomerCity)
        </th>
        <th></th>
    </tr>

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.CustomerName)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.CustomerEmail)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.CustomerZipCode)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.CustomerCountry)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.CustomerCity)
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { id=item.CustomerID }) |
            @Html.ActionLink("Details", "Details", new { id=item.CustomerID }) |
            @Html.ActionLink("Delete", "Delete", new { id=item.CustomerID })
        </td>
    </tr>
}

</table>
View Code

 

效果圖:

 

 

 點擊Report PDF之後:

 

這樣就實現了報表的功能。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 文章作者 Julie Lerman 是 Microsoft MVP、.NET 導師和顧問,住在佛蒙特州的山區。您可以在全球的用戶組和會議中看到她對數據訪問和其他 .NET 主題的演示。她的博客地址是 [thedatafarm.com/blog][1]。她是“ Entity Framework 編程 ...
  • 【博主】反骨仔 【出處】http://www.cnblogs.com/liqingwen/p/6155694.html ...
  • IIS7.0 IIS7.0主要引入了WAS(Windows Process Activation,不同於6.0中的Web Admin Service),分擔了原來w3svc的部分功能,同時為IIS7.0提供了非HTTP協協議的支持,通過適配器介面(Listener Adapter Interface ...
  • Ext.NET 4.1 系統框架的搭建(後臺) 附源碼 代碼運行環境:.net 4.5 VS2013 (代碼可直接編譯運行) 預覽圖: 分析圖: 上面系統的構建包括三塊區域:North、West和Center: North負責顯示系統信息,包括系統圖片、當前時間、登錄信息、退出登錄等功能。 West ...
  • 這幾天上網翻閱了不少前輩們的關於iis和asp.net運行原理的博客,學的有點零零散散,花了好長時間做了一個小結(雖然文字不多,但也花了不少時間呢),鄙人不才,難免有理解不道的地方,還望前輩們不吝賜教。 這篇博客主要是描述asp.net程式在iis6.0上的一個執行過程。 執行過程圖: 組件描述 H ...
  • 前言 在ASP.NET Core中引入了DI,並且通過構造函數註入參數,控制器中會大量使用DI註入各種的配置參數,如果配置註入的參數比較多,而且各個控制器需要的配置參數都基本一樣的話,那麼不斷重覆的複製黏貼代碼提供相應的構造函數,效率低效也,因此使用T4模板生成控制器的構造函數 ,這也得益於C#對分 ...
  • 什麼是發佈訂閱 發佈訂閱是一種設計模式定義了一對多的依賴關係,讓多個訂閱者對象同時監聽某一個主題對象。這個主題對象在自身狀態變化時,會通知所有的訂閱者對象,使他們能夠自動更新自己的狀態。 為了描述這種模式,我們將會構建一個簡單的日誌系統。它包括兩個程式——第一個程式負責發送日誌消息,第二個程式負責獲... ...
  • 對於到多數開發者,都會忽略或者不知道 Action 沒有任何 HTTP 的聲明屬性,Web Api 怎樣處理? 對於初學者,還是需要瞭解 NonActionAttribute ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...