c# SEASON TWO FINAL CHAP 15 finale pt 1
All of the following are true statements regarding Web-based applications, EXCEPT ____.
Web-based applications are designed for a single platform
Software that hosts or delivers a Web application is called a(n) ____.
Web server
With Web applications, instead of using a MessageBox object to display information to users, a common control used for this is a ____.
Label
The only event listed below that is automatically posted back to the server when the event is triggered is the ____.
Button Click Event
Web pages are stateless. What does this mean?
Every postback trip to the server creates a new object.
Values entered are not automatically saved and redisplayed when a page is sent back to a client computer.
They do not retain their values from one trip to the Web server to the next.
Static web pages end with file extensions, namely ____.
.htm
Which of the following is an example of a scripting language that might be used to create a dynamic web page?
JavaScript
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
ASP.NET pages end with a(n) ____ file extension.
.aspx
One approach to developing Web sites is to use Microsoft Internet Information Services (IIS). IIS is ____.
Web Server Software
The default home directory for Web applications on most machines is ____.
c:\InetPub\wwwroot
What is one of the major differences between an ASP .NET application that you build and a Windows application?
Two separate files are created for the user interface for Web applications.
With Windows and console-based applications, execution begins with the first statement in the Main( ) method. With a Web application, execution begins with the first statement in the ____.
Page_Load( ) method
All of the following types of controls can be added to a Web Forms page, EXCEPT ____.
ASP controls
___ enable you to provide more consistency across pages on a Web site.
Cascading Style Sheets
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
The ____ control does not have a property called AutoPostBack that can be set to true to trigger an automatic postback to the server.
Button
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
In order to set the Calendar control object Calendar1 to the current date, you could type ____.
Calendar1.SelectedDate = DateTime.Today;
____ describes the concept of spreading applications over more than one computer system.
Distributed Computing
The language formatted in XML that is used to describe the capabilities of a Web service and includes details about the methods in terms of what type of data they can receive and what type of results they will return is ____.
WSDL
Using Visual Studio, you can add which of the following types of controls?
Navigation
Login
Data
XHTML Directives are delimited with ____.
<% and %>
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
What special attribute can be added to a control's tag in the XHTML file to make the control visible or accessible to the Web server?
runat="server"
Which validation control compares an input value to see if it is between a specified lower and upper boundary?
RangeValidator
How does a Windows application differ from a console-based application?
Windows applications sit in a process loop, once executed, waiting for an event to execute.
A(n) ____ is a notification from the operating system that an action, such as the user clicking the mouse or pressing a key, has occurred.
Event
Event handlers are ____.
Methods