您的位置:首页 > 其它

gridview 绑定list<实体类>

2014-08-26 17:22 417 查看
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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: