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

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;

27 Cards in this Set

  • Front
  • Back
<customErrors> element
an element that gives you control over the maximum number of trace requests to store on the server
DefaultRedirection attribute
An attribute that includes a URL to show custom error pages
HTTP status codes
Standard error codes used with pages that are grouped into five classes
requestLimit attribute
An attribute that gives you control over the maximum number of trace requests to store on the server
Trace.axd
A component in Microsoft Visual Web Developer that opens a trace window for whatever page is open on the other browser window
Trace.IsEnabled property
A property that is used to get or set tracing in ASP.NET
Trace="true" on @page directive
An option that shows the status of tracing
What is a rich error page?

A page with too much content

A page that has user interaction

A page with more than one error

A page with lots of error information
A page with lots of error information
If the <customErrors> element's mode is set to "On" and the defaultRedirect contains a URL, who will see what?

Everyone sees the generic error page

Everyone sees the custom error page

Everyone sees the rich error page

Only the local computers will see the rich error page
Everyone will see the generic error page
If the <customErrors> element's mode is set to "Off" and the defaultRedirect contains a URL, who will see what?


Everyone sees the generic error page

Everyone sees the custom error page

Everyone sees the rich error page

Only the local computers will see the rich error page
Everyone sees the rich error page
If the <customErrors> element's mode is set to "RemoteOnly" and the defaultRedirect contains a URL, who will see what?


Everyone sees the generic error page

Everyone sees the custom error page

Everyone sees the rich error page

Only the local computers will see the rich error page
Only the local computers will see the rich error page
How is page tracing turned on?

Set Trace.IsEnabled=true in the code-behind

Set Trace="true" in the Page directive

Set the Trace property of the form

All of the above
All of the Above
Where does one set the redirect for the error URL to a custom error page?

code-behind

Web.config

Asp directive

Properties window of the form
Web.config
What attribute should always be used along with the enabled attribute of the <trace> element

default
defaultRedirect
requestLimit
none
requestLimit
Why do we sometimes opt to turn off debugging when launching a program to debug a page?

Visual Web Developer often catches errors before ASP.NET

ASP.NET often catches errors before Visual Web Developer

Since Visual Web DFeveloper has no debugging capabilities, we have ASP.NET do the debugging

Since ASP.NET has no debugging capabilities, we have Visual Web Developer do the debugging
Visual Web Developer often catches errors before ASP.NET
What does setting the enabled attribute to true in the <tgrace> element do for the Web site?

Allows us to see page errors without changing the page

Turns on error tracing at the application level

Allows both local and remote users to see page errors

All of the above
All of the above
Where do we trap HTTP Status Codes for producing different error messages?

Code-behind
Web.config
Asp directives
HTTP controls
Web.config
The ___ attribute of the <customErrors> element, found in the Web.config file is set to the URL of a custom error pagef
defaultRedirect
The ___ attribute of the <customErrors> element, found in the Web.config file is used to determine who sees the error pages.
mode
The ___ element, found in the Web.config file has a debug attribute that sets debugging to true or false
<compilation>
To take advantage of the many debugging tools that Visual Web Developer has to offer, the debug attribute must be set to ___
true
Logical errors will often produce erroneous results and are only caught by ___ an application
tracing
The ___ property of the page.trace object is set to true to enable page tracing
IsEnabled
Only users of the ___ are privy to trace information
local machine
The ___ attribute of the <trace> element, found in the Web.config file controls the maximum number of requests for information on the server
requestLimit
___ is the name of the Web page that is automatically generated when the enabled attribute of the <trace> element is set to true
trace.axd
There are ___ classes of HTTP Status Codes identified by their first digit
Five