1 / 13

Wizard

Wizard. Wizard control is newly added in ASP.NET 2.0 . This control enables us to create an wizard based interface for a user.  Typically a wizard interface will be used when we require a user to input a lot of data .

bert
Download Presentation

Wizard

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Wizard

  2. Wizard control is newly added in ASP.NET 2.0. • This control enables us to create an wizard based interface for a user.  • Typically a wizard interface will be used when we require a user to input a lot of data. • Wizard enables us to take the data from the user a series of multiple steps.

  3. An another alternative to wizard based interface is using the tab interface but unlike the tab interface the wizard allows us only an serial navigation between steps i.e. In a tabbed interface a user can jump between tabs (if not controlled) but in a wizard the user can go either to the previous or the next step.

  4. The control provided by ASP.NET 2.0 simulates the wizard completely. It provides us with a start, interim and finish templates. Each step in the wizard can inherit from one of these templates.

  5. To use the Wizard control—the <asp:Wizard> element—you follow these simple steps: drop a Wizard control onto your Web Forms, add constituent controls, images, and text to each wizard step, and access the wizard's data between steps.

  6. The Wizard control is a composite control that inherits from the CompositeControl base class and gets integrated designer support from Visual Studio® 2005. It posts back to itself to maintain view state information. This fact alone allows for nonlinear navigation and guarantees that form elements are automatically repopulated across multiple views of the wizard procedure.

  7. Wizard Control Architecture 

  8. Each step in a wizard is a sort of panel—a container of text, markup, images, and custom user controls.Figure 1 shows the architecture of the Wizard control in ASP.NET 2.0.

  9. Using the Wizard Control • A Wizard control is made up of four main parts: header, view of the current step, navigation bar, and sidebar. All of these constituent parts, and much more, can be styled using a number of properties, such as those listed in Figure 2. The contents of the header, sidebar, and navigation bar can be further customized through the templates listed in Figure 3.

More Related