The CreateObject method creates an instance of a server component. If the component has implemented the OnStartPage and OnEndPage methods, the OnStartPage method is called at this time. For more information about server components, see the Component Reference.
Server.CreateObject( progID )
progID
Specifies the type of object to create. The format for progID is [Vendor.]Component[.Version].
By default, objects created by the Server.CreateObject method have page scope. This means that they are automatically destroyed by the server when it finishes processing the current ASP page.
To create an object with session or application scope, you can either use the <OBJECT> tag and set the SCOPE parameter to SESSION or APPLICATION, or store the object in a session or application variable.
For example, an object stored in a session variable, as shown in the following script, is destroyed when the Session object is destroyed. That is, when the session times out, or the Abandon method is called.
<% Set Session("ad") = Server.CreateObject("MSWC.AdRotator")%>
You can also destroy the object by setting the variable to NOTHING or setting the variable to a new value, as shown below. The first example releases the object ad. The second replaces ad with a string.
<% Session("ad") = Nothing %> <% Session("ad") = "some other value" %>
You cannot create an object instance with the same name as a built-in object. For example, the following returns an error:
<% Set Response = Server.CreateObject("Response") %>
<% Set MyAd = Server.CreateObject("MSWC.AdRotator") %>
The preceding example creates a server component, MyAd, as a MSWC.AdRotator component that can be used to automate rotation of advertisements on a Web page.
For more information about server components, see the Component Reference.
© Microsoft Corporation. All rights reserved.
file: /Techref/language/asp/OBJ/introbj_34.htm, 3KB, , updated: 1996/11/21 18:01, local time: 2024/11/8 21:36,
3.138.67.97:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://ecomorder.com/techref/language/asp/OBJ/introbj_34.htm"> CreateObject</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to ecomorder.com! |
.