我有一个名为 Student 的班级
public class Student
{
public string Name { get; set; }
public List<int> Marks { get; set; }
public Student()
{
}
}
我需要将学生列表绑定到 GridView
List<Student> StudentList = new List<Student>();
Student stud = new Student();
stud.Name = "Scott";
List<int> marks = new List<int>();
marks.Add(10);
marks.Add(20);
marks.Add(30);
stud.Marks = marks;
StudentList.Add(stud);
Student stud1 = new Student();
stud1.Name = "Jon";
List<int> marks1 = new List<int>();
marks1.Add(10);
marks1.Add(20);
marks1.Add(30);
stud1.Marks = marks1;
StudentList.Add(stud1);
GridView1.DataSource = StudentList;
GridView1.DataBind();
网格视图仅显示名称字段。我如何也可以使用名称字段显示标记列表。(在此所有学生的分数相同,有时是 3,有时是 5。等等。)
我需要像这样显示gridview
Name Mark1 Mark2 Mark3
Scott 10 20 30
Jon 10 20 30