1/19
Flashcards for reviewing key concepts from Chapter 7 on Creating Web Applications in VB 2010.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
A __ is a page displayed in a Web browser that requests data from a user.
Web Form
A Web page that displays information such as text and pictures with no interactivity is called a(n) __ Web page.
Static
A(n) __ object allows a user to choose only one option from a group of related options.
RadioButton
The __ object allows users to select one item from a predefined list.
DropDown List
To view a completed DropDownList object, you can run the application by clicking the __ button on the Standard toolbar.
StartDebugging
The __ object is organized by month and displays the number of days in each month as appropriate for the year.
Calendar
The __ object finds a specified object to validate and determines whether the object is empty.
RequireFieldValidator
You can use the __ property of a String class to determine the number of characters in a particular string.
Length
Visual Basic provides a procedure named __ to remove spaces from the beginning and end of a string.
Trim
The __ procedure converts a string to all lowercase.
ToLower
A ________________ Web page reacts to the data that a user enters.
dynamic
A ________________ computer runs the Web browser that requests a Web page from the Web server and displays the page.
client-side
To create a Visual Basic Web project, start Visual Studio, and click the ______________ button on the Standard toolbar.
new web site
An Image object needs a(n) ________________ to specify where a picture resides.
URL
A(n) ______________ object allows the user to choose from several options.
Checkbox
The prefix for the name of a DropDownList object in Visual Basic is ________________.
ddl
When creating a Calendar object, use the prefix ______________ in the name.
cld
You can customize the response to missing data by changing the ________________ property of a RequiredFieldValidator.
ErrorMessage
Which of the following controls verifies that a required field contains data?
RequiredFieldValidator
The ________________ procedure converts a string to all uppercase.
ToUpper