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

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;

6 Cards in this Set

  • Front
  • Back
What are the steps involved in having the ASP.Net worker process serve an incoming HTTP request
1. Request is assigned to aspnet_isapi.dll
2. aspnet_isapi.dll hands request to HTTP Runtime
3. HTTP Runtime wraps Request in an HTTP Context object
4. HTTP Runtime sets up an HttpApplication object to process the request
What is an HttpApplication object
a global.asax-derived object that handles all HTTP requests to a virtual folder
What is the HTTPContext Class
encapsulates all the information available about an individual HTTP request
What is the Server Object
maintains a number of helper methods
What is the HttpResponse object
manipulates text to be sent to the browser
What is the HttpRequest object
groups all the information contained in the HTTP packet