亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

使用嵌套的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
明光市| 湾仔区| 澜沧| 新田县| 松滋市| 东丰县| 天台县| 卓资县| 榕江县| 襄垣县| 舟曲县| 永春县| 潮州市| 陇川县| 西城区| 榆社县| 如东县| 吴桥县| 灯塔市| 木兰县| 中方县| 红安县| 遂川县| 安阳市| 当涂县| 花莲县| 隆德县| 班戈县| 从化市| 根河市| 沾益县| 永康市| 论坛| 宁阳县| 青海省| 永平县| 林口县| 洛川县| 买车| 海丰县| 自贡市|