c# SEASON TWO FINAL CHAP 15 pt 3
When you set the Web Forms control's property using the Properties window in Visual Studio, the settings are stored in the code behind file—the file ending with the .aspx.cs extension.
FALSE
For retrieving data from a database, you can use a GridView object. However, by default, the GridView control displays data on a Web form in a read-only format.
TRUE
HTML controls do not maintain state..
TRUE
You cannot use the drag-and-drop construction approach of Visual Studio to develop Web-based applications. This approach can only be used with Windows applications.
FALSE
A round trip to the server on which the page is stored is required for the second and subsequent requests for a web page. The first request can be dealt with without a round trip.
FALSE
Dynamic web pages are pre-created pages, residing on the server's hard drive, and basically are delivered as HTML documents.
FALSE
Selecting HTTP for the File Location, stores files, by default, in the C:\Inetpub\wwwroot directory.
TRUE
The Web Forms controls are designed to look and act like their Windows counterparts. The programming model used for these controls is also closely aligned to the object-oriented programming model used with Windows controls.
TRUE
The server loads an ASP.NET Web page every time it is requested by a client browser and then unloads it back to the browser after it processes the server-side code to render the HTML.
TRUE
With ASP.NET, you write code in a separate scripting language such as JavaScript or VBScript.
FALSE
Web sites are reopened differently from a Windows application. To reopen a Web application in Visual Studio, select the Web sites name under the TOOLS Options menu.
FALSE
The .aspx.cs file is where your program logic, including your event handlers, is stored with ASP.NET Web sites.
TRUE
Microsoft Access databases include more security features than SQL Server databases. Thus, Access databases are recommended for production Web sites.
FALSE
The Calendar control has a number of properties including the CurrentDate property which is used to pick the month, day, and year for display.
FALSE
Software that hosts or delivers a Web application is called a(n) ____.
Web server
The only event listed below that is automatically posted back to the server when the event is triggered is the ____.
Button Click event
Static web pages end with file extensions, namely ____.
.htm
With traditional client server ASP, once the client requests a page, the server gets it ready by executing any scripts found inside the HTML document, ____.
the client sees the result in the form of an HTML document
The default home directory for Web applications on most machines is ____.
c:\InetPub\wwwroot
All of the following types of controls can be added to a Web Forms page, EXCEPT ____.
ASP controls
To set the message for an Input text field use the ____ property.
Value
The ____ class reduces your need for accessing individual data provider classes when you are connecting to an Access database.
AccessDataSource
In addition to dragging a validation control to the form, you must set the ____ property in order to tie the validation control to a specific form control object.
ControlToValidate
All of the following are true regarding Cascading Style Sheets (CSS) EXCEPT ____.
CSS stores tags representing sizes, colors of fonts, and alignment of text within the HTML markup
Style sheet includes a list of rules. Each rule consists of ____.
a selector and one or more declaration blocks
What is the name of the CSS file that you should find in the Solution Explorer window?
Site.css
The code-behind file with ASP.NET is saved using which file extension?
.aspx.cs
Which validation control compares an input value to see if it is between a specified lower and upper boundary?
RangeValidator
Which of the following is true regarding JavaScript?
Which of the following is true regarding JavaScript?
JavaScript is one of the components of AJAX.
Natively backed means the user interface controls are rendered and transformed using the native controls of the target platform which ____
allows the applications to retain the look and feel of the platform.