Please visit our sponsors !
DropDownList Control
Definition and Usage
The DropDownList control is used to create a drop-down list.
Each selectable item in a DropDownList control is defined by a ListItem element!
Tip: This control supports data binding!
Properties
Property |
Description |
AutoPostBack |
A Boolean value that specifies whether the form should be
posted immediately after one of the items changes select status or not.
Default is false |
BorderColor |
Specifies the color of the border around the drop-down list |
BorderStyle |
Specifies the style of the border around the drop-down list |
BorderWidth |
Specifies the width of the border around the drop-down list |
DataSource |
The data source to use |
DataTextField |
A field in the data source to be displayed in the drop-down
list |
DataValueField |
A field in the data source that specifies the value of each
selectable item in the drop-down list |
id |
A unique id for the control |
OnSelectedIndexChanged |
The name of the function to be executed when the index of
the selected
item has changed |
runat |
Specifies that the control is a server control. Must
be set to "server" |
Example 1
In the following example we declare one DropDownList
control in an .aspx file. Then we create an event handler for the Click event which displays some text
and the selected item, in a Label control:
<script runat="server">
Sub submit(sender As Object, e As EventArgs)
mess.Text="You selected " & drop1.SelectedItem.Text
End Sub
</script>
<html>
<body>
<form runat="server">
<asp:DropDownList id="drop1" runat="server">
<asp:ListItem>Item 1</asp:ListItem>
<asp:ListItem>Item 2</asp:ListItem>
<asp:ListItem>Item 3</asp:ListItem>
<asp:ListItem>Item 4</asp:ListItem>
<asp:ListItem>Item 5</asp:ListItem>
<asp:ListItem>Item 6</asp:ListItem>
</asp:DropDownList>
<br /><br />
<asp:Button id="b1" Text="Submit" OnClick="submit"
runat="server"/>
<br /><br />
<asp:label id="mess" runat="server"/>
</form>
</body>
</html>
|
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|