強類型集合進行數據綁定示例
代碼如下
aspx 文件中要做的是從工具箱中拖入相應的控件
using System;
using System
using System
using System
using System
using System
using System
public partial class _Default : System
{
protected void Page_Load(object sender
{
//創建集合
List<string> fruit = new List<string>()
fruit
fruit
fruit
//定義數據源
ListBox
DropDownList
CheckBoxList
RadioButtonList
//綁定
this
}
}
字典集合
在
要想 避免了類型的不斷轉化減少了系統裝箱和拆箱 且數據類型相對確定的情況下可以采用Dictionary類 例如
字典集合進行數據綁定示例
命名空間和aspx 文件同上
代碼段如下
public partial class _Default : System
{
protected void Page_Load(object sender
{
//創建一個字典集合
Dictionary<int
fruit
fruit
fruit
//綁定列表控件
ListBox
//選擇要顯示的字段
ListBox
//綁定
this
}
}
From:http://tw.wingwit.com/Article/program/net/201311/13405.html