I tried to generate a TMultiView containing a dynamic number of views. My first aproach was to open the multiView, place a repeater in it, and then place a TView in the repeaters itemTemplate property. This doesn't work, because TMultiView accepts only TViews as children, no TRepeaters...
My second aproach was a bit more... imaginative.

I tried to create a TRepeater which opens the TMultiView in HeaderTemplate property, closes it in FooterTemplate property and generates the TViews in its ItemTemplate property. Of course, that didn't work either.
Now I know two ways how not to do it. Could anyone give me one hint how to accomplish the task?
I also tried to generate all the objects I need in code, but I'm not too sure about when they start their life-cycle (seems to me it happens when they're beeing attached to TMultiView's Views collection?!) how far this lifecycle will catch up to the page's lifecycle (I mean e.g. if I create them in Init stage, will they go past their own Init stage, or will they stop there and will their other lifecycle stages be called when the containing page reaches this state?) and how page state and postback data handling will work under these circumstances... What would happen when I deleted one of those views during a postback?
Hopefully there's somebody who's able to enlighten the dark...
