Hi Emrak. Other than the obvious change from
myRepeater.DataSource = ds;
to
myRepeater.DataSource = SomeDALObject.ReturnDataSet();
in the second textarea on the dotnetspider page(Page_Load), it seems pretty
difficult, because you have to use the RepeaterItemEventArgs to get the
crucial information (third textarea). Sometimes OOP methodology can't be
used for everything...
JDT
> Hi all,
> I wish to display a Gridview with master data and associated child data
[quoted text clipped - 12 lines]
> to
> create a Repeater nested in a Gridview utilizing a BLL and DAL?
Emrak - 21 Mar 2008 14:46 GMT
Thanks for the reply. In my case it's almost mandatory though. The page in
question is capable of pulling up to 5 million records so custom
paging/sorting is a must...
> Hi Emrak. Other than the obvious change from
> myRepeater.DataSource = ds;
[quoted text clipped - 6 lines]
>
> JDT