I have a Repeater Control which I bind to a list of Products
Repeater.DataSource = ProductRepository.GetProducts();
Later (in another module), I need to retrieve the products from the Repeater, but it seems not to work with Repeater.Item.DataItem (which is then null). My question is, is there any reference to the products in the Repeater-Items? Or do I have to set it myself via id field etc. What would be the easiest way to get the "underlying" product objects?