对于每个类别,显示其子类别

时间:2012-12-03 23:28:46

标签: c# asp.net sql-server

我是SQL和asp.net的新手,我正在尝试创建一个论坛应用程序。我创建了两个表。我正在使用此查询选择表中的数据:

SELECT 
    forum_categories.CategoryName, forum_subcategories.SubCategoryName  
FROM     
    forum_categories  
LEFT JOIN 
    forum_subcategories ON forum_categories.CategoryId = forum_subcategories.CategoryId

enter image description here

这是查询返回的内容:

enter image description here

现在我需要的是每个CategoryName我需要显示它的子类别。我正在使用ListView:

<asp:ListView ID="ListView1" runat="server" DataSourceID="ForumDataSource">
    <ItemTemplate>
        <div id='<%#Eval("CategoryName") %>' class="PostCategories">
            <h2><asp:Label ID="Label1" runat="server" Text='<%#Eval("CategoryName") %>'></asp:Label></h2>
            <table class="ForumPosts">
                <thead>
                    <td>Category</td>
                    <td>Posts</td>
                    <td>Last Post</td>
                </thead>
                <tbody>
                    <tr>
                        <td><asp:Label ID="Label2" runat="server" Text='<%#Eval("SubCategoryName") %>'></asp:Label></td>
                    </tr>
                </tbody>
            </table>
       </div>           
    </ItemTemplate>
    <EmptyDataTemplate>
        <p>No Data Found</p>
    </EmptyDataTemplate>
</asp:ListView>
<asp:SqlDataSource ID="ForumDataSource" runat="server" 
    ConnectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\ASPNETDB.MDF;Integrated Security=True;User Instance=True" 
    ProviderName="System.Data.SqlClient" 
    SelectCommand="SELECT forum_categories.CategoryName, forum_subcategories.SubCategoryName FROM forum_categories  LEFT JOIN forum_subcategories ON  forum_subcategories.CategoryId = forum_categories.CategoryId">
</asp:SqlDataSource>

现在大家可能已经从代码中理解了这会返回8个表。

我想得到的是每个类别显示它的子类别数据。在这种情况下,应该只有3个表

我该如何解决这个问题?

是应该使用SQL解决还是使用服务器端语言处理接收的数据?

1 个答案:

答案 0 :(得分:2)

我不是ListViews的忠实粉丝。但你可以尝试一下,

您需要两个列表视图。外部列表视图和内部列表视图。

外面的人会遍历类别因此它应该只给你三个表。确保只选择不同的。

然后内部listview将遍历每个CategoryID并获取链接到CategoryID的子类别。