我不斷收到以下「System.ArgumentException」錯誤讀取ASP:GridView的數據綁定:「System.Data.DataTable」不允許索引訪問
數據綁定:「System.Data.DataTable」不允許索引訪問。
在我的GridView中。當我運行它分解成html標籤<asp:Label ID="lblTargetName" runat="server" Text='<%# Eval("[TargetName]") %>'></asp:Label>
項目這是HTML:
<asp:GridView>
<asp:TemplateField HeaderText="TargetName" SortExpression="TargetName">
<ItemTemplate>
<asp:Label ID="lblTargetName" runat="server" Text='<%# Eval("[TargetName]") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
</asp:GridView>
和後面的代碼到網格綁定:
protected void UpdateGridview()
{
string PlanningType = DropDownList4.SelectedValue.ToString();
string ProductionYear = null;
//SqlDataSource sds = new SqlDataSource();
SqlConnection con = new SqlConnection(DatabaseConnectionString);
SqlDataAdapter da = new SqlDataAdapter();
DataSet ds = new DataSet();
//sds = Page.FindControl("SqlDataSource1") as SqlDataSource;
if (DropDownList5.SelectedValue != "")
ProductionYear = DropDownList5.SelectedValue.ToString();
try
{
if (ProductionYear != null)
{
using (con)
{
con.Open();
SqlCommand cmd = new SqlCommand("sp_GetSUPPExcelImport", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add(new SqlParameter("@PlanningType", SqlDbType.VarChar));
cmd.Parameters["@PlanningType"].Value = PlanningType.ToString();
cmd.Parameters.Add(new SqlParameter("@ProductionYear", SqlDbType.VarChar));
cmd.Parameters["@ProductionYear"].Value = ProductionYear;
da = new SqlDataAdapter(cmd);
ds = new DataSet();
da.Fill(ds);
GridView1.DataSource = ds.Tables;
GridView1.AllowPaging = true;
GridView1.DataBind();
}
}
}
catch (Exception ex)
{
Label1.ForeColor = Color.Red;
Label1.Text = ex.Message.ToString();
}
finally
{
if (da != null)
da.Dispose();
if (ds != null)
ds.Dispose();
if (con != null)
{
con.Close();
con.Dispose();
}
}
您正在將一個datatable集合分配給gridview數據源。這是行不通的。您需要從數據集中分配一個表格,例如'GridView1.DataSource = ds.Tables [0];'。之後,您還應該從eval:Text ='<%#Eval(「TargetName」)%>'中刪除'['和']'。如果它仍然不起作用,那麼應該告訴我們更多關於存儲過程返回的信息。 – user1429080
感謝您的幫助,就像魅力一樣。 –