2

我需要 ASP.NET ListView 的帮助,我已经阅读了很多教程,但我还没有找到我的问题的答案。我试图解释我的问题。

我的申请:

我使用来自我们 Active Directory 的数据的 DataTable,并用这个 DataTable 填充我的 ListView

 this.myListView.DataSource = //myDataTable
 this.myListView.DataBind(); 

例如,我的 DataTable 有三列和几行,其中包含来自 ActiveDirectory 的用户信息。

在此处输入图像描述

如果我启动我的 ListView 我会得到这个......我的图片和我的 ASPX 代码是如何......

<ListView ...>
 <LayoutTemplate>
   <table>
    <tr>
     <th> --> Firstname Header
     <th> --> Lastname Header
     <th> --> Location Header
    <tr>
    <tr> --->itemPlaceHolder
   </table>
 </LayoutTemplate>
 <ItemTemplate>
  <tr>
   <td> --> Firstname
   <td> --> Lastname
   <td> --> Location
  </tr>
 </ItemTemplate>
</ListView>

我的想法:

我想如果我显示我的 ListView 我得到这个......

在此处输入图像描述

为此必须使用 GroupTemplate 但我不知道如何构建可以创建此组的 ListView。问题是我必须知道哪个用户拥有该位置,然后我必须构建 ListView。

谁能帮我 :(

4

0 回答 0