J
Jon Paal
I have a datalist bound to an arraylist holding 3 chart controls.
I want to display the charts in the datalist :
....
dtlcharts.Datasource = arrCharts
dtlcharts.Databind()
....
<asp:datalist id="dtlcharts" runat="server" >
<ItemTemplate>
control1 goes here
</ItemTemplate>
<ItemTemplate>
control2 goes here
</ItemTemplate>
<ItemTemplate>
control3 goes here
</ItemTemplate>
</asp:datalist>
how can I add the 3 controls into the datalist ??
I want to display the charts in the datalist :
....
dtlcharts.Datasource = arrCharts
dtlcharts.Databind()
....
<asp:datalist id="dtlcharts" runat="server" >
<ItemTemplate>
control1 goes here
</ItemTemplate>
<ItemTemplate>
control2 goes here
</ItemTemplate>
<ItemTemplate>
control3 goes here
</ItemTemplate>
</asp:datalist>
how can I add the 3 controls into the datalist ??