December 1999
Intermediate to advanced
992 pages
22h 3m
English
ASP includes a number of native objects, with their own properties and methods. The objects that will be examined in this chapter are the server object, the request object, and the response object.
The server object is a low-level object that provides some really basic methods. The method that you will be employing in this chapter is the method that creates an instance of a server component, or an ActiveX object. This is the createObject method. The syntax for doing this in Visual Basic Script is
set [objectname]= server.createObject("[string describing object]")
You will be using this line several times in this chapter. Basically, what you'll do with this line of code is create an instance of the ...
Read now
Unlock full access