Hi,
Is there any reason Control2 UserControl is being rendered even though I've only asked the MultiView control to show the first view? It seems this is a waste of processor cycles.
<asp:MultiView ID="MultiView1" runat="server">
<asp:View ID="View1" runat="server">
<controls:Cont1 ID="control1" runat="server" />
</asp:View>
<asp:View ID="View2" runat="server">
<controls:Cont2 ID="control2" runat="server" />
</asp:View>
</asp:MultiView>
