gpt4 book ai didi

c# - 绑定(bind)列表到 GridView

转载 作者:太空狗 更新时间:2023-10-29 18:07:28 26 4
gpt4 key购买 nike

我有一个信用卡对象列表。信用卡类别如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Client
{
public class CreditCard
{
public String A_Number;
public String A_Name;
public String A_Type;
public String A_Owner_Type;
public String Bank_City;
public String Bank_State;
public String Bank_ZIP;
public String Balance;
public String C_Username;

public CreditCard()
{

}
}
}

在另一个类中,我尝试将列表绑定(bind)到 GridView ,如下所示:

protected void Page_Load(object sender, EventArgs e)
{
List<CreditCard> list = (List<CreditCard>)Session["list"];
GridView_List.DataSource = list;
GridView_List.DataBind();
}

但是,我收到以下错误:

The data source for GridView with id 'GridView_List' did not have any properties or attributes from which to generate columns.  Ensure that your data source has content.

问题是什么?我检查过列表确实包含数据,所以我不知道为什么它不起作用?如何解决这个问题?

最佳答案

您必须为 DataBinding 使用公共(public)属性。按如下方式更新您的类(class):

  public class CreditCard
{
public String A_Number { get; set; }
public String A_Name { get; set; }
public String A_Type { get; set; }
public String A_Owner_Type { get; set; }
public String Bank_City { get; set; }
public String Bank_State { get; set; }
public String Bank_ZIP { get; set; }
public String Balance { get; set; }
public String C_Username { get; set; }

public CreditCard() { }
}

关于c# - 绑定(bind)列表到 GridView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16020987/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com