我在.aspx頁面上有一個grdidview控件,我試圖從後面的代碼動態連接並綁定gridview,但不知何故它引發了一個錯誤......這是什麼問題碼?任何幫助?將代碼隱藏的LinqDataSource綁定到Gridview
LinqDataSource LDS_POReport = new LinqDataSource();
LDS_POReport.ContextTypeName = "DataContextDataContext";
LDS_POReport.Selecting += new EventHandler<LinqDataSourceSelectEventArgs>(LinqDataSourcePO_Selecting);
this.gvReport.DataSource = "LDS_POReport";
//this.gvReport.DataBind();
更新:
後,我更新的代碼
this.gvReport.DataSource = LDS_POReport;
它工作正常,但是當我試圖解決我得到這個錯誤:
GridView控件 'gvReport'發射事件排序 這是沒有處理。
我加了這個,但沒有效果。
LDS_POReport.AutoPage = true;
LDS_POReport.AutoSort = true;
當問這樣的問題時,請務必*包括異常詳情。 「它會拋出一個錯誤」並不是很能從中得出任何結論。 – 2010-09-08 17:54:05