gridview 綁定list

gridview 綁定list<實體類>是可以的,示例如一下。

<%@ Page Language="C#" %>
<%@ 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>
 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章