Techniques for ASP creating objects
-------------------------------------------------
Title: (< OBJECT > vs. Server.CreateObject ())
Original:http://www.asp101.com/tips/index.asp?id=4
Translation: Pine
-------------------------------------------------
When we use server components to create objects, there are generally two methods. The more common approach is to use the CreateObject () method of the server object, like this:
SET Nextlink = Server.CreateObject ("MSWC. Nextlink ")
This approach works well, but there is a way to save system resources.
When you create an object with the Server.CreateObject () method, the object is immediately loaded, and the system allocates memory and other resources to the object.
The second way to create an object is to take advantage of the HTML < OBJECT > tag, which is the syntax:
< OBJECT runat=sever Id=nextlink progid= "MSWC. Nextlink "></object >
When you create an object with the < OBJECT > tag, the object you are creating is not loaded immediately, but until the object's methods or properties are referenced for the first time. In this way, we will save some resources. It's not much, but it helps save server resources when your system has to endure nearly million clicks a day.