中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

使用嵌套的Repeater控件和VisualC#.NET顯示分層數據

c#
小云
84
2023-09-08 06:10:38
欄目: 編程語言

可以使用嵌套的Repeater控件和Visual C#.NET來顯示分層數據。以下是一個示例:

假設有以下數據結構:

public class Category
{
public string Name { get; set; }
public List<Product> Products { get; set; }
}
public class Product
{
public string Name { get; set; }
}

首先,需要在前端頁面中添加兩個Repeater控件,一個用于顯示分類,另一個用于顯示產品。在頁面上添加以下代碼:

<asp:Repeater ID="rptCategories" runat="server">
<ItemTemplate>
<h2><%# Eval("Name") %></h2>
<asp:Repeater ID="rptProducts" runat="server" DataSource='<%# Eval("Products") %>'>
<ItemTemplate>
<p><%# Eval("Name") %></p>
</ItemTemplate>
</asp:Repeater>
</ItemTemplate>
</asp:Repeater>

然后,在后端代碼中綁定數據到Repeater控件。在頁面的Page_Load事件中添加以下代碼:

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
List<Category> categories = GetCategories(); // 獲取分類數據
rptCategories.DataSource = categories;
rptCategories.DataBind();
}
}
private List<Category> GetCategories()
{
// 模擬從數據庫中獲取數據
List<Category> categories = new List<Category>();
Category category1 = new Category
{
Name = "分類1",
Products = new List<Product>()
{
new Product { Name = "產品1" },
new Product { Name = "產品2" },
new Product { Name = "產品3" }
}
};
Category category2 = new Category
{
Name = "分類2",
Products = new List<Product>()
{
new Product { Name = "產品4" },
new Product { Name = "產品5" },
new Product { Name = "產品6" }
}
};
categories.Add(category1);
categories.Add(category2);
return categories;
}

通過以上代碼,Repeater控件會根據數據結構進行嵌套顯示,首先顯示分類名稱,然后在每個分類下顯示產品名稱。這樣就實現了分層顯示數據的功能。

0
内丘县| 砀山县| 抚顺市| 阿勒泰市| 娱乐| 行唐县| 三江| 磴口县| 张家川| 揭西县| 日喀则市| 新竹县| 井陉县| 沅陵县| 莱州市| 贵溪市| 丁青县| 罗甸县| 钟山县| 衡水市| 松原市| 西林县| 普洱| 通州区| 乐清市| 华亭县| 时尚| 绥滨县| 新巴尔虎左旗| 海伦市| 三门县| 浦北县| 卫辉市| 蕉岭县| 堆龙德庆县| 府谷县| 荣成市| 富川| 色达县| 西华县| 准格尔旗|