程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> RadioButtonList綁定圖片及泛型Dictionary應用

RadioButtonList綁定圖片及泛型Dictionary應用

編輯:ASP.NET基礎
本博文是讓你學會讀取站點某一目錄的圖片,掌握LINQ與泛型Dictionary<TKey,TValue>的使用。

首先准備好幾張圖片存在站點某一目錄之下,本例中的存儲圖片的目錄名為MsSiteImages,圖片你可以從微軟網站下載http://windows.microsoft.com/en-US/windows/home
我們寫一個泛型數據集,將存儲目錄的圖片信息:
復制代碼 代碼如下:
View Code
private Dictionary<int, string> GetData()
{
Dictionary<int, string> dic = new Dictionary<int, string>();
int i = 0;
System.IO.FileInfo fi;
var Images =
from f in System.IO.Directory.GetFiles(Server.MapPath("MsSiteImages"))
orderby f descending
select f;
foreach (var filename in Images)
{
fi = new System.IO.FileInfo(filename);
dic.Add(i, "<img src='" + "MsSiteImages/" + fi.Name + "' alt='" + fi.Name +
"' title='" + fi.Name + "'/>");
i++;
}
return dic;
}

創建一個網頁,並拉RadioButtonList控件進入網頁:
復制代碼 代碼如下:
<asp:RadioButtonList ID="RadioButtonList1" runat="server"></asp:RadioButtonList>

寫一個方法,用來綁定數據給RadioButtonList控件,其中一個綁定類別,你可以從下面地址下載 ,解壓之後,把InsusListControlUtility.dll放入站點的BIN目錄中。
復制代碼 代碼如下:
private void Data_Binding()
{
Insus.NET.InsusListControlUtility objList = new Insus.NET.InsusListControlUtility();
objList.RadioButtonListParse(this.RadioButtonList1, GetData(), "value", "key");
}

在網頁的Page_Load中,引用上面的Data_Binding()方法:
復制代碼 代碼如下:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
Data_Binding();
}

運行網頁的效果:
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved