今天下午有人在論壇咨詢 LinqDataSource 控件如何進行組合字段數據顯示在下列列表中
C# 代碼
using System;
using System
using System
/// <summary>
///Books 的摘要說明
/// </summary>
public class Books
{
public int Id { get; set; }
public String Author { get; set; }
public String Title { get; set; }
public DateTime PunDate { get; set; }
public Books() { }
public List<Books> GetBooks
{
get
{
return this
}
}
internal List<Books> GetInternalBooks()
{
List<Books> bs = new List<Books>();
bs
bs
bs
return bs;
}
}
ASPX 代碼
<%@ Page Language=
<!DOCTYPE html PUBLIC
<html xmlns=
<head runat=
<title></title>
</head>
<body>
<form id=
<asp:DropDownList ID=
DataTextField=
</asp:DropDownList>
<asp:LinqDataSource ID=
Select=
</asp:LinqDataSource>
</form>
</body>
</html>
最後的執行結果將是下面的樣子
HTML 代碼
<select name=
<option value=
<option value=
<option value=
</select>
在此寫出此文
目的在於示例一下 LinqDataSource 控件的 Select 屬性的寫法
From:http://tw.wingwit.com/Article/program/net/201311/13266.html