J
Jalal Akram
why doesn't it allows to refer DataList1 in code-behnd as in following
<asp
ataList ID="DataList1" runat="server" CellPadding="0"
CellSpacing="5"
RepeatColumns="3" RepeatDirection="Horizontal"
EnableViewState="False">
<ItemTemplate>
<asp
ataList ID="DataList2" runat="server">
<ItemTemplate>Stuff Here</ItemTemplate>
</asp
ataList>
<asp:LinkButton ID="LinkButton1"
runat="server">LinkButton</asp:LinkButton>
</ItemTemplate>
</asp
ataList>
shows error with following msg
the name 'DataList1' does not exist in the current context.
surprised.......how to have two nested DataLists as above and
bound them with a DataSet having two (paraent-child) tables, linked through
a DataRelation
Thinking you in advance
<asp
CellSpacing="5"
RepeatColumns="3" RepeatDirection="Horizontal"
EnableViewState="False">
<ItemTemplate>
<asp
<ItemTemplate>Stuff Here</ItemTemplate>
</asp
<asp:LinkButton ID="LinkButton1"
runat="server">LinkButton</asp:LinkButton>
</ItemTemplate>
</asp
shows error with following msg
the name 'DataList1' does not exist in the current context.
surprised.......how to have two nested DataLists as above and
bound them with a DataSet having two (paraent-child) tables, linked through
a DataRelation
Thinking you in advance