n/m already managed to do it. Heres the code if anyones interested:
<asp:datalist id="dtl_modulos" runat="server" RepeatLayout="Table"
RepeatDirection="Vertical">
<ItemTemplate>
<br>
<b>
<%# DataBinder.Eval(Container.DataItem, "Moi_Nombre")%>
</b>
<br />
<asp:Label id="lbl_moduloID" Runat="server" Visible="False"
Text='<%# DataBinder.Eval(Container.DataItem, "Mod_Id") %>'>
</asp:Label>
<table width="98%" border="0" cellspacing="1" align="center">
<tr>
<td class="t_menu" valign="top">
<div align="center">
<asp:label id="lbl_modulo" runat="server"></asp:label>
</div>
</td>
</tr>
</table>
<asp:datalist id="dtl_roles" runat="server" RepeatLayout="Table"
RepeatColumns="2" RepeatDirection="Vertical">
<ItemTemplate>
<br>
<%# DataBinder.Eval(Container.DataItem, "Rol_Nombre")%>
<br />
<asp:Label id="lbl_rolID" Runat="server" Visible="False"
Text='<%# DataBinder.Eval(Container.DataItem, "Rol_Id") %>'>
</asp:Label>
<table width="98%" border="0" cellspacing="1" align="center">
<tr>
<td class="celdas_gris_claro" valign="top">
<div align="center" class="t_principales">
<asp:label id="lbl_rol" runat="server"></asp:label>
</div>
</td>
</tr>
<tr>
<td class="celdas_gris_claro" valign="top">
<div align="center">
<asp:ListBox id="lsb_categorias" runat="server"
SelectionMode="Multiple"></asp:ListBox>
</div>
</td>
</tr>
</table>
</ItemTemplate>
</asp:datalist>
</ItemTemplate>
</asp:datalist>
[quoted text, click to view] "Jairo Nieto" <jairo@axesnet.com> wrote in message
news:uKtmvRrEEHA.3336@TK2MSFTNGP12.phx.gbl...
> Hi, i am trying to create a data list, who has another datalist as one of
> its items. Can anyone please tell me how to accomplish this?
>
> Thx :)
>
>