vote up 0 vote down star

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>
flag

38% accept rate
Exactly, how you have set mw to View1? – tanathos Jun 9 at 8:01
MultiView1.ActiveViewIndex = 0; For some reason though, control2 load event still fires. Any ideaS? – Sir Psycho Jun 9 at 8:34
Have you try to use SetActiveView method? Just: MultiView1.SetActiveView(View1); – tanathos Jun 9 at 9:34

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.