Category: ASP

0

Chapter 49: ASP Server

1. What is the Server Object in Classic ASP? The Server object is a built-in utility object that gives your ASP code access to server-level helper functions — things that only the web server...

0

Chapter 50: ASP Error

1. What is the ASPError Object? (Very Important Context) When an unhandled runtime error happens in Classic ASP (division by zero, undefined variable with Option Explicit, database connection failure, etc.), two things normally happen:...

0

Chapter 51: ASP FileSystem

1. What is FileSystemObject (FSO)? FileSystemObject is a COM component (ActiveX object) that lets your Classic ASP code talk to the Windows file system — read/write files, create/delete folders, check existence, get properties, etc....

0

Chapter 52: ASP TextStream Object

1. What is the TextStream Object? TextStream is not created directly with Server.CreateObject. You get a TextStream object when you call one of these methods on a FileSystemObject: fso.OpenTextFile(path, mode, create, format) fso.CreateTextFile(path, overwrite,...

0

Chapter 53: ASP Drive Object

ASP Drive Object. This is not a separate W3Schools lesson (they mention it very briefly inside the “ASP FileSystemObject” and “ASP Drives” sections), but it is one of the most practical sub-objects you get...

0

Chapter 54: ASP File Object

ASP File Object This topic usually appears right after ASP TextStream in the W3Schools Classic ASP files reference, and it is the object you use when you need metadata about a specific file —...

0

Chapter 55: ASP Folder Object

ASP Folder Object. This is not a separate W3Schools lesson (they mention it very briefly inside the “ASP FileSystemObject” and “ASP Folders” sections), but it is one of the most practical sub-objects you get...

0

Chapter 56: ASP Dictionary Object

ASP Dictionary Object. This is not a separate lesson in the main W3Schools ASP tutorial flow, but it is one of the most common COM objects that every serious Classic ASP developer used (and...

0

Chapter 57: ASP AdRotator Component

ASP AdRotator Component. This is the exact lesson that appears in the W3Schools Classic ASP tutorial, and it was one of the most exciting things for beginners in 1998–2005 because it let you show...

0

Chapter 58: ASP Browser Capabilities Component

ASP Browser Capabilities Component This is the lesson that appears in the W3Schools Classic ASP reference under ASP Components, and it was one of the coolest things for web developers in 1998–2005 because it...