你好!
是可以绑定实体类的,可能是你的代码某些地方有问题。我写了个示例你对比一下。
<%@ Page Language="C#" AutoEventWireup="true" %>
<%@ Import Namespace="System.Collections.Generic" %>
<script runat="server">
public class Employee
{
public int Id { get; set; }
public string Name { get; set; }
public Employee(int id, string name)
{
this.Id = id;
this.Name = name;
}
}
protected void Page_Load(object sender, EventArgs e)
{
List<Employee> list = new List<Employee>();
list.Add(new Employee(1, "Name1"));
list.Add(new Employee(2, "Name2"));
gv.DataSource = list;
gv.DataBind();
}
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>GridView 绑定 List 对象</title>
</head>
<body>
<form id="form1" runat="server">
<asp:GridView ID="gv" runat="server" />
</form>
</body>
</html>
知识改变命运,奋斗成就人生!