vote up 7 vote down star
1

What are some scenarios where MultiView would be a good choice? The MultiView control along with its View controls simply seem to extend the notion of Panels.

Both Panels and MultiViews seem prone to abuse. If your UI concerns and biz logic concerns are properly separated, why lump views together in a single ASPX?

flag

77% accept rate

3 Answers

vote up 8 vote down check

I have used MultiViews as a more flexible basis for a Wizard control.

I do agree that lumping lots of views together is a code smell. In the case of a wizard there are often lots of pieces of state you want to share throughout the process. The multiview allows this state to be simply stored in the viewstate.

Most of the time I make the contents of each view is a single user control that can encapsulate the logic related to that particular step.

link|flag
vote up 3 vote down

I've used it in the passed to implement a simple Ajax-enabled tab interface.

Style a button to look like a tab, then set it's onClick event to switch the active view in an update panel.

link|flag
vote up 0 vote down

Any time that you want to show different content on a page based on some condition. At work I've created a tab control that just uses a MultiView and another simple control I made that looks like tabs. Each tabs puts a link (which is styled) in the other control that is wired up to set the active view to the correct tab.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.