资源简介

只需要一条SQL语句,即可完美展现动态统计图(柱状图、饼状图、3D柱状图等等),本实例是ASP.NET + SQLServer的,把解压后放到同一个目录,然后发布至IIS即可测试,有任何问题留言我

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;
using WebChart;
using System.Data;
using System.Data.SqlClient;
using System.Text; 
using System.xml;
using System.IO;

public partial class Default3 : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
        getData();
        //Button4();
       // btn2();
    }
    //获取数据
    protected DataSet getData()
    {
        DataSet ds = new DataSet();
        try
        {
            string connectionString = “Data Source=.;Initial Catalog=ERP_OA; Persist Security Info=True;User ID=sa;Password=123456“;
            SqlConnection con = new SqlConnection(connectionString);
            con.Open();

            //把xml中name显示的的数据列添加别名为name,value显示的数据列添加别名为value
            string cmdstring = “SELECT bumenname as nameid as value from erpbumen where id <20 for xml autotype“;
           
            SqlCommand cmd = new SqlCommand(cmdstring con);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            da.Fill(ds);

            string a = ds.Getxml().ToString();
            a = a.Replace(“erpbumen““set“);
            
            con.Close();
            

        a = a.Replace(“l version=\“1.0\“?>“““);
        a = a.Replace(““ ““);
        a = a.Replace(“
“ ““);
        a = a.Replace(““ ““);
        a = a.Replace(“
“ ““);
        a = a.Replace(““ ““);
        a = a.Replace(“
“ ““);
        
        a = “l version=\“1.0\“ encoding=\“utf-8\“?>“ + a + ““;

        a = a.Replace(“<“ “<“);
        a = a.Replace(“>““>“);
        xmlDocument xmldoc = new xmlDocument(); //创建空的xml文档 
           
        xmldoc.Loadxml(a);

       xmldoc.Save(Server.MapPath(“Data.xml“)); //保存 



        }
        catch (Exception ex)
        {
            Response.Write(ex.Message);
        }
       

        return ds;
    }
    //gridview数据绑定
   

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1119  2015-09-11 10:36  Default3.aspx

     文件       2350  2015-09-11 10:53  Default3.aspx.cs

     文件        374  2015-09-11 10:37  Data.xml

----------- ---------  ---------- -----  ----

                 3843                    3


评论

共有 条评论