• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/36

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

36 Cards in this Set

  • Front
  • Back
Ajax (Asynchronous JavaScript and XML)
Used by Web applications that can send data to, and retrieve data from, a server asynchronously (in the background) without interferring with the display and behavior of the existing page
ASP.NET AJAX
The ASP.NET implementation of Ajax
ChildrenAsTriggers
A boolean property of the UpdatePanel that, when set to True, is updated automatically when any of its child or nested UpdatePanels are updated
Client-side library
A library that holds client-side programming code, such as JavaScript, that is run in the browser
client-side scripting
Allows the page to respond immediately to user activities rather than waiting on the server to build a new page and send it to the browser
DOM (Document Object Model)
A cross-platform and language-independant convention for representing and interacting with objects in HTML, XHTML, and XML documents
EnablePartititionRendering
Gets or sets a value that enables partial rendering of a page, which in turn enables you to update regions of the page individually by using UpdatePanel controls.
extender control
A control that can either be a standalone control, just like the other controls in the Toolbox, or a non-visible control that enhances existing controls
JavaScript
Code that is embedded into HTML for the browser to run when Java Applets are downloaded along with HTML as separate files
ScriptManagerProxy
A control that is placed on that page to make the necessary changes unique to that page
ScriptManager
Used to manage scripts and to provide a reference to additional client-side JavaScript files and Web services
Scripts collection
A collection that is used to include external scripts into the Web page
Timer control
A control used to delay scripts
Triggers
An event on the Web page, the client-side scripting language processes a function that can change the DOM, which creates a dynamic Web page.
UpdateProgress
An object on the form that is used as a feedback to the user during the wait for the update
VBScript
An Active Scripting language developed by Microsoft that is modeled on Visual Basic
What best describes client-side scripting?

It is script that is called by the Web Server

It is script the gets compiled for the client

It is script that runs on the Java Virtual Machine

It is script that is run by the browser
It is script that is run by the browser
What is the difference between JavaScript and VBScript?

JavaScript runs on the client while VBScript runs on the server

JavaScript runs on the server while VBScript runs on the client

JavaScript needs a hosting language where VBScript can stand alone

JavaScript can stand alone where VBScript needs a hosting language
JavaScript needs a hosting language where VBScript can stand alone
What is not true about the Document Object Model (DOM)?

It is written in XML

It is located on the Web Server

It is the code that generates the Web page

It is what client-side scripting languages manipulate
It is located on the Web server
What best describes Ajax?

Ajax is an extension of ASP.NET

Ajax is an acronym for Asynchronous JavaScript and XML

Ajax is the technologies used for asynchronously updating Web Pages

All of the above
Ajax is the technologies used for asynchronously updating Web Pages
To which control does the EnablePartialRendering property belong?

ScriptManager

UpdatePanel

UpdateProgress

All extender controls
ScriptManager
What is the purpose of having a ScriptManagerProxy control on your pages?

It makes exceptions to the ScriptManager settings

It is used in place of the ScriptManager for pages using JavaScript

It is used in place of the ScriptManager for pages using any client-side scripting

One ScriptManager per site means that all other pages must use the ScriptManagerProxy
It makes exceptions to the ScriptManager settings
How does a UpdateProgress control differ from a standard progress control?

It needs to ahve the ScriptManager present

It provides feedback during a postback process

It prevents the page from being unresponsive during postbacks

All of the above
All of the Above
Which statement is true regarding ChildrenAsTriggers?

Must be set to False when UpdateMode is set to Always

Must be set to Always when UpdateMode is set to False

Limits the triggering of an UpdatePanel to child elements

Allows nested UpdatePanels to trigger their parents
Allows nested UpdatePanels to trigger their parents
Which statement is true regarding Update Panel?

They can be nested

They update independently by default

They can be used as client-side controls

All of the above
All of the above
Which statement is true regarding the Scripts Collection?

It is part of the ScriptManager

It is the only way to include scripts on a Web page

It holds the script code to be included on the Web page.

All of the above
It is part of the ScriptManager
The ___ event handler in an attribute for the HTML <input> element that calls a JavaScript function
onClick
VBScript will not run on any browser except ___
Internet Explorer
Although VBScript and JavaScript can be embedded in HTML, ___ can run as a standalone application as well.
VBScript
___ defines the structure of an XHTML Web page and is manipulated by client-side script
DOM
The ___ control is often used with the UpdatePanel to automate postbacks at given intervals
Timer
The ___ property of the UpdatePanel must often be changed to take full advantage of the ChildrenAsTriggers property of the same Controll
UpdateMode
The ScriptManager can hold a collection of Scripts and ___
Services
For UpdatePanels to work properly, the ___ control must be placed on the form before any UpdatePanels
ScriptManager
The programmer can create or download ___ controls, which can be standalone or enhance existing controls
extender
___ is a popular client-side library from Microsoft
jQuery