ASP.NET - Data Binding
We may use data binding to fill lists with selectable items from
an imported data
source, like a database, an XML file, or a script.
Data Binding
The following controls are list controls which support data binding:
- asp:RadioButtonList
- asp:CheckBoxList
- asp:DropDownList
- asp:Listbox
The selectable items
in each of the above controls are usually defined by one or more asp:ListItem controls, like this:
<html>
<body>
<form runat="server">
<asp:RadioButtonList id="countrylist" runat="server">
<asp:ListItem value="N" text="Norway" />
<asp:ListItem value="S" text="Sweden" />
<asp:ListItem value="F" text="France" />
<asp:ListItem value="I" text="Italy" />
</asp:RadioButtonList>
</form>
</body>
</html> |
However, with data binding we may use a separate
source, like a database, an XML file, or a
script to fill the list with selectable items.
By using an imported source, the data is separated from the HTML,
and any changes to the items are made in the separate data source.
In the next three chapters, we will describe how to bind data from a scripted data source.
Learn how your website performs under various load conditions
 |
|
WAPT
is a load, stress and performance testing tool for websites and web-based applications.
In contrast to "800-pound gorilla" load testing tools, it is designed to minimize the learning
curve and give you an ability to create a heavy load from a regular workstation.
WAPT is able to generate up to 3000 simultaneously acting virtual users using standard hardware configuration.
Virtual users in each profile are fully customizable. Basic and NTLM authentication methods are supported.
Graphs and reports are shown in real-time at different levels of detail, thus helping to manage the testing process.
Download the free 30-day trial!
|
|