Other New Controls
In addition to the new controls, ASP.NET 2.0 also provides
numerous enhancements to existing controls that make these controls
more versatile than ever before in building component-based web
pages. For example, the Panel control now has a DefaultButton
property that specifies which button should be clicked if the user
presses the Enter key while the panel has the focus.
There is also a new Wizard control, which simplifies the task of
building web UIs that step users through sequential operations.
Individual steps are defined by WizardStep controls. The Wizard
control serves as a container for WizardStep and provides a default
interface for stepping backward and forward. It is also capable of
displaying a list of steps, enabling users to randomly navigate
between them, and it fires events that can be used to
programmatically control step ordering. A simple Wizard control
declaration is:
<asp:Wizard ID=”Wizard1”
runat=”server”>
<WizardSteps>
<asp:WizardStep ID=”WizardStep1” runat=”server” Title=”Step
1”>
Wizard Step
1 </asp:WizardStep>
<asp:WizardStep ID=”WizardStep2” runat=”server” Title=”Step
2” StepType=”Complete”>
Wizard Step
2 </asp:WizardStep> </WizardSteps> </asp:Wizard>
Another interesting and potentially very useful control debuting
in ASP.NET 2.0 is the MultiView control. Paired with View controls,
MultiView controls can be used to create pages containing multiple
logical views. Only one view (the one whose index is assigned to the
MultiView control’s ActiveViewIndex property) is displayed at a
time, but you can switch views by changing the active view
index.
More Related links
The
DataList control like the Repeater control is a template driven,
light weight control, and acts as a container of repeated data
items. The templates in this control are used to define the data
that it will contain. It is flexible in the sense that you can
easily customize the display of one or more records that are
displayed in the control...........
Article on ASP.NET Server Control Events.
This articles explains difference between Server Control and HTML
control in ASP.NET.
This articles describes the navigation ways available in ASP.NET.
This includes introduction of .Net framework, .Net framework
architecture, role of assembly and GAC.
This article has content about master page, its advantages and
how to create master page in ASP.NET. It also describes about
multiple master page.
Using form authentication, ones own custom logic can be used for
authentication............
ASP.NET impersonation is controlled by entries in the
applications web.config file...........
How do we access crystal reports in .NET? What are the various
components in crystal reports? What basic steps are needed to
display a simple report in crystal?..........
|