下面是我的代码
List<test> Students = new List<test>(){
new test() { name = "Jack", imgpath = "15", Des = "100" },
new test() { name = "Smith", imgpath = "15", Des = "101" },
new test() { name = "Smit", imgpath = "1", Des = "102" }
};
GridView1.DataSource = Students;
GridView1.DataBind();
我的课是:
public class test
{
public string name;
public string imgpath;
public string Des;
}
但它给了我错误“在选定的数据源上找不到名为'name'的字段或属性。”
那么如何解决呢。我不知道我的代码有什么问题。
谢谢