Explain what a DropDownList object is and how you specify items you want to display in the list
What will be an ideal response?
The DropDownList object allows users to select one item from a predefined list. It is similar to the ListBox object used in Windows applications, except that for a DropDownList object, the list of items remains hidden until users click the list arrow button. After adding a DropDownList object to a form and naming it, you can specify the items you want to display in the list. You often want to order these items alphabetically or numerically for ease of use. The first item in this list appears in the DropDownList object by default. The DropDownList object will not display the items in the list until you run the application and display the web form in a browser. The user must click the list arrow to view the complete list of items during execution. The prefix for the name (ID) of the DropDownList object in Visual Basic is ddl.
You might also like to view...
Use the Speech Recognition menu in Windows to perform which of the following tasks?
a. Configure a touch screen. b. Configure speakers. c. Configure a microphone. d. Configure system sounds.
The default Equals implementation determines:
a) whether two references refer to the same object in memory. b) whether two references have the same type. c) whether two objects have the same instance variables. d) whether two objects have the same instance variable values.