Repeater control with nested datagrids
The datasource for the datagrids is as follows:
DataSource='<%# GetData(Ctype(DataBinder.Eval(CType(Container, RepeaterItem),"ID"), String)) %>'
However I want to use a ascx template with the repeater as follows
rep1.ItemTemplate = LoadTemplate("tempResults.ascx")
The GetData function uses the same dataset as the repeater control and hence it cannot be added to the ascx.vb page.
Is there anyway to populate the repeater and datagrid using ascx template??
Thanks in advance.
With warm regards,
Vinu

