void Page_Load(object sender, System.EventArgs e)
{
if(!IsPostBack)
{
// 創建 Hashtable 對象並填充數據
Hashtable hash = new Hashtable();
hash.Add("北京", "010");
hash.Add("廣州", "020");
hash.Add("上海", "021");
hash.Add("天津", "022");
hash.Add("成都", "028");
hash.Add("濟南", "0531");
// 進行數據綁定
RadioButtonList1.DataSource = hash;
RadioButtonList1.DataTextField = "Key";
RadioButtonList1.DataValueField = "Value";
RadioButtonList1.DataBind();
}
}
出處:http://mjgforever.cnblogs.com/