Repeater in Repeater
Posted
by bill
on Stack Overflow
See other posts from Stack Overflow
or by bill
Published on 2010-05-27T16:55:16Z
Indexed on
2010/05/27
17:01 UTC
Read the original article
Hit count: 461
I have a repeater inside a repeater. Where the parent repeater is bound to a Datable which has a column with a Datatable in it.
I would like to bind the child repeater to the datatable column in the parent repeater's datarow
Is this possible? i was thinking i could do this directly in the aspx file like:
DataSource="<%# DataBinder.Eval(Container.DataItem, "Products")%>" but it doesn't seem to work.
© Stack Overflow or respective owner