HTML テンプレートをマスター ページにロードし、カテゴリをデータベースにバインドしました。このコーディングを使用しました。
<ul class="categories">
<li id="categoryItem">
<h4>Categories</h4>
<ul class="categories" id="categorylist">
<asp:Repeater ID="repCategories" runat="server">
<HeaderTemplate><ul></HeaderTemplate>
<ItemTemplate>
<li>
<asp:HyperLink ID="hyperCategories" runat="server"><%#Eval("CategoryName")%></asp:HyperLink>
</li>
</ItemTemplate>
<FooterTemplate></ul></FooterTemplate>
</asp:Repeater>
</ul>
</li>
master.csページでコーディングを行って、このリピーターをデータベースにバインドしてみてください。
if (!IsPostBack)
{
DataSet ds = new ViewAction().GetAllProductCategoryData();
repCategories.DataSource = ds;
repCategories.DataBind();
}
しかし、それはエラーを示しています
"The name repCategories does not exist in the current context"
このエラーが表示される理由は、これを解決するのに役立ちます。お願いします