Can you share a method where I can return all the data in dataRepeater1?
Hi Onur,
typically the DataRepeater is used in a virtual mode and the items collection only contains a fixed number of items
(usually the visible and a couple of prefetched ones).
If your DataRepeater is bound to Data the best way is to iterate through the bound collection (BindingList, etc.) instead.
Best regards
Frank
PS: If you populating the data manually you could also just use a *LayoutPanel and fill it with single panels.
Then you can simply iterate through *LayoutPanel.Controls.
Please login first to submit.