| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 739 人关注过本帖
标题:求助:做了个统计的页面,但是无法实现,希望大家能看看,谢了
只看楼主 加入收藏
aififa
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-3-16
收藏
 问题点数:0 回复次数:1 
求助:做了个统计的页面,但是无法实现,希望大家能看看,谢了

代码:
public class WebForm3 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox clerk_dep;
protected System.Web.UI.WebControls.Button Button1;
protected System.Web.UI.WebControls.DropDownList DropDownList1;
protected System.Web.UI.WebControls.Label Label1;
ArrayList al=new ArrayList();
SqlDataReader dr;

private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
}


#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion

private void Button1_Click(object sender, System.EventArgs e)
{
SqlConnection con=new SqlConnection("server=127.0.0.1;database=dadao;uid=sa;pwd=sa;");
SqlCommand com=new SqlCommand("select count(clerk_dep) from tb_business where clerk_dep=@clerk_dep",con);

com.Parameters.Add(new SqlParameter("@clerk_dep",SqlDbType.VarChar,20));
com.Parameters["@clerk_dep"].Value=clerk_dep.Text;

try
{
con.Open();
dr=com.ExecuteReader();
al.Add(dr["count(clerk_dep)"].ToString());
DropDownList1.DataTextField="";
DropDownList1.DataSource=al;
DropDownList1.DataBind();
}
catch{}
finally
{
con.Close();
dr.Close();
}
}
}
主要是能够统计数据库中clerk_dep为某个值时的个数,谢谢!

搜索更多相关主题的帖子: System Web protected 页面 ArrayList 
2006-03-16 15:56
aififa
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-3-16
收藏
得分:0 
我会了,谢谢大家
2006-03-17 10:04
快速回复:求助:做了个统计的页面,但是无法实现,希望大家能看看,谢了
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.011646 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved