asp.net中,經(jīng)常會(huì)使用到templates(模版)功能,比如在datagrid,datalist,repeater等控件中,使用templates,將會(huì)大大增強(qiáng)其功能。以往,我們一般是在設(shè)計(jì)程序時(shí),就已經(jīng)設(shè)置好控件中的模版是怎樣的了。但是,有的時(shí)候,可能我們需要?jiǎng)討B(tài)加載模版,比如,當(dāng)你要求你的應(yīng)用程序的界面風(fēng)格隨著用戶的需求而變化時(shí),你就需要到動(dòng)態(tài)加載模版的功能了。但要注意的是,并不是所有的web控件都支持模版功能,而且要注意,哪些控件支持模版的哪些功能,下面簡(jiǎn)單列出了一些支持模版功能的控件:
Repeater控件,支持的模版有:
HeaderTemplate, FooterTemplate, ItemTemplate, AlternatingItemTemplate, SeperatorTemplate.
Datelist控件,支持的模版有:
HeaderTemplate, FooterTemplate, ItemTemplate, AlternatingItemTemplate, SeparatorTemplate, SelectedItemTemplate, EditItemTemplate.
Datagrid控件,支持的模版有:
HeaderTemplate, FooterTemplate, ItemTemplate, EditItemTemplate, Pager.
下面,我將以動(dòng)態(tài)加載datalist控件的模版來說明如何動(dòng)態(tài)加載模版:
首先來了解動(dòng)態(tài)加載模版的原理。在.NET中,有templatecontrol類,這個(gè)類是page和usercontrol類的基類。它也同時(shí)定義了page和usercontrol類的基本功能。該類提供了兩個(gè)方法:loadcontrol和loadtemplate。Loadcontrol方法裝載來自外部文件的控件,并且返回usercontrol類對(duì)象。而loadtemplate方法加載來自外部文件的模版并且返回的是Itemplate對(duì)象。
Loadtemplate方法中,只有一個(gè)參數(shù),參數(shù)值是外部模版文件的路徑,并且返回itemplate對(duì)象。而datalist控件提供了一系列的屬性,可以設(shè)置各種模版的屬性,包括有AlternatingItemTemplate, EditItemTemplate, FooterTemplate, HeaderTemplate, ItemTemplate, SelectedItemTemplate, 和 SeperatorTemplate,在下文中,將會(huì)看到相關(guān)介紹。
接著,我們開始介紹例子,在示例程序中,是使用動(dòng)態(tài)創(chuàng)建數(shù)據(jù)表和數(shù)據(jù)列的,并且將數(shù)據(jù)的創(chuàng)建封裝到一個(gè)Db類中,好讓讀者進(jìn)一步回顧如何動(dòng)態(tài)創(chuàng)建數(shù)據(jù)表,數(shù)據(jù)列等,并沒用從數(shù)據(jù)庫中提取(當(dāng)然,你也可以用傳統(tǒng)的讀取數(shù)據(jù)庫的方法),
public class DB
{
public DB()
{ }
/// <summary>
/// Method returns a DataSet object filled with data
/// </summary>
public static DataSet GetDataSet()
{
//創(chuàng)建dataset和datatable
DataSet ds = new DataSet();
DataTable table = new DataTable("Records");
DataColumn col;
//增加一個(gè)列
col = new DataColumn();
col.DataType = System.Type.GetType("System.Int32");
col.ColumnName = "ID";
col.ReadOnly = true;
col.Unique = true;
table.Columns.Add(col);
col = new DataColumn();
col.DataType = System.Type.GetType("System.String");
col.ColumnName = "Name";
col.AutoIncrement = false;
col.Caption = "Name";
col.ReadOnly = false;
col.Unique = false;
table.Columns.Add(col);
col = new DataColumn();
col.DataType = System.Type.GetType("System.String");
col.ColumnName = "Address";
col.AutoIncrement = false;
col.Caption = "Address";
col.ReadOnly = false;
col.Unique = false;
table.Columns.Add(col);
//增加一條記錄
DataRow row = table.NewRow();
row["ID"] = 1001;
row["Name"] = "Melanie Giard";
row["Address"] = "23rd Street, Park Road, NY City, NY";
table.Rows.Add(row);
row = table.NewRow();
row["ID"] = 1002;
row["Name"] = "Puneet Nehra";
row["Address"] = "3rd Blvd, Ashok Vihar, New Delhi";
table.Rows.Add(row);
row = table.NewRow();
row["ID"] = 1003;
row["Name"] = "Raj Mehta";
row["Address"] = "Nagrath Chowk, Jabalpur";
table.Rows.Add(row);
row = table.NewRow();
row["ID"] = 1004;
row["Name"] = "Max Muller";
row["Address"] = "25 North Street, Hernigton, Russia";
table.Rows.Add(row);
// Add DataTable to DataSet
ds.Tables.Add(table);
// Return DataSet
return ds;
}
}
更多信息請(qǐng)查看IT技術(shù)專欄