ASP.NET显示柱形图源码
有些报表,利用水晶报表过麻烦。并且水晶报表理论上必定是非免费的。又不是开源项目,使用与否,值得商讨。
这是我在开发项目中,写的一个简单的柱形图显示小程序。
<%@ Page language="c#" Codebehind="web_sheng.aspx.cs" AutoEventWireup="false" Inherits="hljtcpoa.cpadmin.web_sheng" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>web_sheng</title>
<link href="http://www.cnblogs.com/../web/images/CSS.CSS" rel="stylesheet" type="text/css">
<style>
body {
font-size: 12px;
line-height: 20px;
color: #000000;
background-image: url(../web/images/fbj.gif);
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<body bgcolor="#FFFFFF" background="../web/images/fbj.gif">
<form id="Form1" method="post" runat="server">
<FONT face="宋体"></FONT>
<asp:DataList id="DL" runat="server" CellPadding="0">
<ItemTemplate>
<FONT face="宋体">
<TABLE cellSpacing="0" cellPadding="0" width="440" border="0">
<TR>
<TD width="70" align="right" height="24" background="../web/images/7024.gif"><%# DataBinder.Eval(Container.DataItem,"sheng")%> </TD>
<TD align="left" width="370"><img src="http://www.cnblogs.com/../web/images/zhu.gif" width='<%# len((decimal)DataBinder.Eval(Container.DataItem,"num"))%>' height="14" align=absmiddle> <font color=#999999><%# DataBinder.Eval(Container.DataItem,"num")%></font></TD>
</TR>
</TABLE>
</FONT>
</ItemTemplate>
</asp:DataList>
</form>
</body>
</HTML>
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
namespace hljtcpoa.cpadmin
{
/// <summary>
/// web_sheng 的摘要说明。
/// </summary>
public class web_sheng : System.Web.UI.Page
{
protected System.Web.UI.WebControls.DataList DL;
protected decimal j;
private void Page_Load(object sender, System.EventArgs e)
{
DataSet ds=conn.dv("select top 1 * from index_sheng order by num desc");
j=decimal.Parse(ds.Tables["Table"].Rows[0]["num"].ToString());
ds.Clear();
DL.DataSource=conn.dv("select * from index_sheng order by num desc");
DL.DataBind();
}
public string len(decimal a)
{
decimal b=a*300/j;
return b.ToString();
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
效果图: