.NET – 在 ASP.NET MVC 3 中使用 Microsoft Chart Controls Library
Microsoft 提供了免費的 Chart Controls Library,其提供的範例都是 ASP.NET Web Form 的部份,需在 ASP.NET MVC 中使用的話又需使何設定呢?在此提供一個簡單的範例. 1. 在你的 MVC Web Project 中加入 System.Web.DataVisualization Library 2. 在 Web.config 中加入 assembly, httpHandlers 及 handlers. <?xml version="1.0" encoding="utf-8"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=152368 --> <configuration> <connectionStrings> <add name="xx" connectionString="user id=userId;data source=DBName;password=pwd;" /> </connectionStrings> <appSettings> <add key="webpages:Version" value="1.0.0.0" /> <add key="ClientValidationEnabled" value="true" /> <add key="UnobtrusiveJavaScriptEnabled" value="true" /> </appSettings> <system.web> <compilation debug="true" targetFr...