本博文是讓你學會讀取站點某一目錄的圖片,掌握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();
}
運行網頁的效果: