• 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/45

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;

45 Cards in this Set

  • Front
  • Back
<!DOCTYPE>
The declaration statement that uses the 3 words described above: strict, transitional, frameset
Application Object
A top-level object of Httpcontect.Current that contains properties and methods related to the currently running application
application state
A data repository for the application that uses the Web server to store data
attribute minimization
An HTML coding technique that allows the developer to use the attribute name without writing its value when the name of the attribute is the same as the value of the attribute
attributes
They define any properties that an element might want to include
Cascading Style Sheets (CSS)
They define how to display HTML elements, including characteristics such as fonts, borders, color, size, etc
class
Contains sets of programming code bundled with data meant to complete a specific task
Class Selector
Uses an attribute to locate elements
control state
A data repository for Web form controls that has every control automatically save the state of the control on the Web page
DTD (Document Type Definition)
A tool used by the developer to ensure that the Web pages follow a specific markup language
element
The name of an XHTML structure
HTML (Hyper Text Markup Lang)
The predominant markup language for Web pages. HTML is the basic building-blocks of Web pages
HttpContext object
Used to retrieve current properties
intrinsic objects
ASP.NET objects built into the language
objects
Used in ASP.NET to assign a number of assigned attributes
Request object
A top-level object from the HttpContext.Current object. It contains properties and methods related to the browser.
Response object
A top-level object in the HttpContext.Current object that contains properties and methods related to the browser.
Server object
A top-level object from the Httpcontext.Current object that contains properties and methods related to the Web esrver. The primary focus of the Server object to make changes to the server.
Session object
A level object from the Httpcontext.Current object that contains properties and methods related to individual users or instances of a web site
session state
A data repository for the user that uses a session ID number stored on the server and assigned to the browser in the form of a cookie.
state
The current activities of a Web page
Tags
Markers used to define elements in HTML and XHTML files
view state
A data repository for Web form controls that keeps track of controls which have a Boolean property that when turned on, saves the staete of the control on the Web page
W3C
The main international standards organization for the World Wide Web
XHTML
A family of XML markup languages that mirrors or extends versions of the widely used Hypertext Markup Language (HTML), the language in which Web pages are written
What is the markup language used exclusively to provide formatting and alter the appearence of Web page elements?
CSS
What attribute that must be present for XHTML compliance is often missing when images are placed on a web page?
alt
Which of the simple CSS selectors requires no special syntax?
Type
What is the generally accepted technique for page layout that also passes strict XHTML validation
CSS
What is the term used to describe an attribute of an object
properties
Which of the following is NOT a view in Visual Web Developer?

a. Source
b. Design
c. Split
D. Code-behind
Code-behind
Which of the following stmts will direct the current page to another URL?

Response("http://www.msn.com");

Response.Write('http://www.msn.com");

Response.Redirect("http://www.msn.com");

All of the above
Response.Redirect
Which of the following is NOT a top-level Httpcontext.Current object?

Client
Server
Response
Application
Client
What is the term used for the process of passing data from a web page back to the server for processing and then back again to the browser?

Passback
Postback
Request.Write
Response.Write
Postback
What is the name of the client-side state where values and properties of the controls on the Web page are stored but should be turned off if not needed?

Session
Application
View
Control
View
XHTML is the markup language created by forcing HTML to follow the syntax rules of the ___ markup language
XML
A validated XHTML document is considered ___
Well formed
A validated XHTML document has been checked for proper ___
Syntax
The ___ attribute of the <img> tag is used to locate the file for embedding an image into a web page
src
A ___ Style Sheet is located within the same document as the HTML and uses the <style> tag rather than the style attribute
internal
The CSS class selector uses the ___ symbol to locate the selected elements
#
The ___ element should be limited to organizing data, not laying out Web pages
table
The ___ object is one of the intrinsic objects and is used for supplying browser information to the program.
response
___ state is commonly used to save data for individual users between postbacks
Session
___ state can be set to save Web form data between postbacks
View