Hi, I have a custom control which determines it height from a member variable in a value object that it is passed. I want a collection of these controls to appear in a vertical list on a page, each control being a different height.
In the past I have been using a Repeater, and that works great for controls of a fixed height because I can easily compute the top of each control. However in this case the controls are all different heights and they don't know about each other. Anyone got any bright ideas on how to position the controls neatly in a Repeater? I can take the long-winded and ugly approach of getting all the controls to know about each other and where they are in the scheme of things and compute their own positions, but that feels very ugly. Thanks in advance

