Server Object
The Server object provides access to methods and
properties on the server. Most of these methods and properties serve
as utility functions.
Syntax
Server.property|method
Properties:
ScriptTimeout: The amount of time that a script can run before it
times out.
Methods:
CreateObject: Creates an instance of a server component.
HTMLEncode: Applies HTML encoding to the specified
string.
MapPath: maps the specified virtual path, either the absolute path
on the current server or the path relative to the current page, into
a physical path.
URLEncode: Applies URL encoding rules, including escape characters,
to the string.
Creating an Instance of a Component Object
Create an instance of the Ad Rotator Component
<%
Set objAD=Server.CreateObject("MSWC.AdRotator")
%>
Create an Instance of the Content Linker
<%
Set objNL=Server.CreateObject("MSWC.nextLinker");
%>
|
| |