1
後,我跑我的查詢我已經得到了結果到一個DataTable如下面的(這只是一個簡單的結果集):嵌套的SQL查詢結果列表
food_cat food
-----------------------
vegit carrot
vegit onion
vegit tomato
fruit cherry
fruit banana
fruit orange
我想列出的結果通過food_cat
分組在一個無序列表中。
<h3> Vegit </h3>
<ul>
<li>carrot</li>
<li>onion</li>
<li>tomato</ti>
</ul>
<h3>fruit</h3>
<ul>
<li>cherry</li>
<li>banana</li>
<li>orange</li>
</ul>
我已經嘗試了一些for
,if
,while
控制,但無法找到一個很好的解決方案。
您是否想要在sql級別或演示級別生成UL/LI元素? – gh9
@ gh9在演示級別。但爲什麼不在sql級別,如果它會更快 – zkanoca
看看嵌套中繼器:http://stackoverflow.com/questions/3571363/nested-repeaters-in-asp-net –