using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace hetongguanlixitong
{
/// <summary>
/// huizong 的摘要说明。
/// </summary>
public class huizong : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Button quanbu;
protected System.Web.UI.WebControls.Button zhixing;
protected System.Web.UI.WebControls.Button gongsi;
protected System.Web.UI.WebControls.Button guoqi;
protected System.Web.UI.WebControls.TextBox TextBox;
protected System.Web.UI.WebControls.HyperLink fanhui;
protected System.Web.UI.WebControls.DataGrid MyDataGrid;
protected System.Web.UI.WebControls.Button jinxing;
protected System.Web.UI.WebControls.CheckBoxList MyCheckBoxList;
protected System.Web.UI.WebControls.Button jinxingzhong ;
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
if(! Page.IsPostBack)
{
Bind_Mydatagrid();
}
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.quanbu.Click += new System.EventHandler(this.quanbu_Click);
this.zhixing.Click += new System.EventHandler(this.zhixing_Click);
this.gongsi.Click += new System.EventHandler(this.gongsi_Click);
this.guoqi.Click += new System.EventHandler(this.guoqi_Click);
this.jinxing.Click += new System.EventHandler(this.jinxing_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void quanbu_Click(object sender, System.EventArgs e)
{
SQLConnection myConnection= new SQLConnection("server=localhost; uid=sa; pwd=; database=hetongguanlixitong");
myConnection.open ( );
SQLDataSetCommand myCommand= new SQLDataSetCommand("HeTongQuanBu" , myConnection);
myCommand.CommandType=CommandType.StoredProcedure;
DataSet ds = new DataSet();
MyCommand.FillDataSet(ds, "GongSiBiao, HeTongBiao");
MyDateGrid.DataSource=ds.Tables["GongSiBiao, HeTongBiao"].DefaultView;
MyDataGrid.DataBind();
myConnection.close();
}
他报以下的错误.这是咋回事啊?
d:\inetpub\wwwroot\hetongguanlixitong\huizong.aspx.cs(69): 找不到类型或命名空间名称“SQLConnection”(是否缺少 using 指令或程序集引用?)
d:\inetpub\wwwroot\hetongguanlixitong\huizong.aspx.cs(70): 找不到类型或命名空间名称“myConnection”(是否缺少 using 指令或程序集引用?)
d:\inetpub\wwwroot\hetongguanlixitong\huizong.aspx.cs(72): 找不到类型或命名空间名称“SQLDataSetCommand”(是否缺少 using 指令或程序集引用?)
d:\inetpub\wwwroot\hetongguanlixitong\huizong.aspx.cs(73): 找不到类型或命名空间名称“myCommand”(是否缺少 using 指令或程序集引用?)
d:\inetpub\wwwroot\hetongguanlixitong\huizong.aspx.cs(78): 找不到类型或命名空间名称“MyCommand”(是否缺少 using 指令或程序集引用?)
d:\inetpub\wwwroot\hetongguanlixitong\huizong.aspx.cs(80): 找不到类型或命名空间名称“MyDateGrid”(是否缺少 using 指令或程序集引用?)
d:\inetpub\wwwroot\hetongguanlixitong\huizong.aspx.cs(83): 找不到类型或命名空间名称“myConnection”(是否缺少 using 指令或程序集引用?)