你把BindData()换成
[CODE]conn.ConnectionString="provider=Microsoft.Jet.OLEDB.4.0;data source="+Server.MapPath("../data/patent.mdb");
cmd.Connection=conn;
cmd.CommandText="select * from "+Broadid;
da.SelectCommand=cmd;
da.Fill(ds,Broadid);
conn.Close();
DataGrid1.DataSource=ds.Tables[Broadid];
DataGrid1.DataBind();[/CODE]
#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);
this.DataGrid1.PageIndexChanged += new System.EventHandler(this.DataGrid1_PageIndexChanged);
}
#endregion
你VS代码的红字部分是怎样写的