Programmo in vb.net.

Ho creato un datalist.
Nell'evento ItemDataBound ho dichiarato gli oggetti (label, hyperlink) del datalist per agganciarmi al database.

Vorrei sapere se è possibile dichiarare anche il div che contiene gli oggetti dichiarati nel ItemDataBound.

Codice:

<aspataList ID="DTLNews" runat="server" RepeatColumns="4" RepeatDirection="Horizontal" CssClass="Griglia" RepeatLayout="Flow">
<ItemTemplate>
<div id="Div_Home_News_Principale_Tot" class="Home_News_Principale_Tot_Div" runat="server">
<%-- Occhiello + titolo + testo --%>
<div class="Home_News_Principale_Div_SX">
<!-- Intestazione + Sezione -->
<asp:HyperLink ID="HLIntestazione" runat="server" CssClass="Home_News_Principale_DataCat">Intestazio ne</asp:HyperLink>
<asp:HyperLink ID="HLSezione" runat="server" CssClass="Home_News_Principale_Sezione">Sezione</asp:HyperLink>
<!-- Titolo -->
<asp:HyperLink ID="HLTitolo" runat="server" CssClass="Home_News_Principale_Titolo">Titolo</asp:HyperLink>
<!-- Testo -->
<asp:HyperLink ID="HLTesto" runat="server" CssClass="Home_News_Principale_Testo"></asp:HyperLink>
</div><!-- Fine Div -->
<%-- Img --%>
<div class="Home_News_Principale_Img_Div">
<asp:ImageButton ID="ImgNews" runat="server" CssClass="Home_News_Principale_Img"/>
</div><!-- Fine img -->
</div><!-- Fine news -->
</ItemTemplate>
In questo caso il div "Div_Home_News_Principale_Tot" contiene gli oggetti.

E' possibile dichiararlo nell'ItemDataBound?