|
|
|
|
|
|
| |
The ASP Objects
Introduction
The ASP objects can be used to for several things. They are
very useful and make the life of coding much easier. You can retrieve
information about the client or about the server. These objects are always
required if you want to create and provide dynamic content. This section will
show you each of the objects in detail. Each object has events, properties and
methods, which are also explained with some nice and simple examples. The
following topics are covered.
Objects
|
Name:
|
Descrption
|
|
Application
|
The application object stores information about the
complete web application.
|
|
ASPError
|
The ASPError object can be used to handle errors on asp
pages in a nice way.
|
|
ObjectContext
|
This object is mainly used for transactions.
|
|
Request
|
The Request object stores information about the HTTP
request. It can be used to retrieve information from a Form, Cookie,
ServerCertificate etc.
|
|
Response
|
The Response object stores information about the server’s
response. It can be used i.e to write out strings in browser.
|
|
Server
|
This object provides several server tasks like encoding
strings or mapping virtual paths.
|
|
Session
|
The Session object can be used to store and retrieve
information about the current user session.
|
|
|
|
|
|
|
|
|