Mac
Mac

Reputation: 7533

Is there any substitution to wizard control in asp.net?

we can attain the same effect using tables what is the benefit of wizard control over them

Upvotes: 1

Views: 616

Answers (1)

Brian Mains
Brian Mains

Reputation: 50728

Using a MultiPage and managing the navigation yourself are alternatives too; can even just use panels are replacements.

The wizard is just a specialized implementation; if you like something else, use it. It has events, properties, that are part of the API to represent the core wizard... It's perfectly OK to not use it too. Whatever works for you.

HTH.

Upvotes: 1

Related Questions