Dictionary object is an useful object to store any form of data in an array list. Following asp script block stores all data coming from a form and list them in our HTML codes.
Dictionary Object ASP / General Development
The Dictionary object is used to store name/value pairs (referred to as the key and item respectively). The Dictionary object is like an associative array, but with its own built-in functionality that looks after the basic tasks of storing and manipulating the data, and sizing for the required number of elements. Each item in the Dictionary object is associated with a unique key. The key is used to retrieve an individual item. We don't have to worry about which row or column the data is in, we just access it using a unique key.
The Dictionary object ASP / General Development
This tutorial explains basics of the Dictionary object by using two examples: translation of a number from English to Spanish and password protection.
File Object ASP / File Operations
The File object represents a specified file on the local machine or on a network share. To work with the File object's properties and methods, you need to create an instance of the FileSystemObject object first and then instantiate the File object through the GetFile method. Also you can get a File object reference from the Folder object, by using the Files Collection.
Folder Object ASP / General Development
The folder object represents a specified file folder on the current machine. We can use the properties and methods of the Folder object to traverse directories on the drive, and to get at all the properties of this or any other folder. To work with the Folder object's properties and methods, you need to create an instance of the FileSystemObject object first and then instantiate the Folder object through the GetFolder method. Also you can get a Folder object reference from the Drive object, by using the RootFolder property.
Drive Object ASP / General Development
The Drive object represents a physical drive. This drive can exist on your machine, or it can be a drive shared by another machine. To work with the Drive object's properties, you need to create an instance of the FileSystemObject object first and then instantiate the Drive object through the GetDrive method or the Drives property of the FileSystemObject object.
ASPError Object ASP / Debugging and Error Handling
The ASPError object is a new in ASP 3.0, and is available in IIS5 and later. It provides a range of detailed information about the last error that occurred in script in an ASP page. The ASPError object is only available through the GetLastError method of the Server object.
Object Moved ASP / Site Navigation and Searching
A small code snippet that lets you eliminate 'Object Moved, This object may be found here' problem that occur on IIS server with some versions of proxy servers.
Response Object ASP / General Development
The Response object is used to send output to the client from the web server. The syntax, collections, properties and methods of the ASP Response object.
ASP Request Object ASP / General Development
The Request object retrieves the values that the client browser passed to the server during an HTTP request. It is used to get information from the user. Using this object, you can dynamically create web pages and perform various server-side actions based on input from the user.
Using the Application Object to Improve Performance ASP / General Development
This article discusses the usage of persistence with the Application object in detail. Explains when to use Persistence, advantanges and disadvantages of using Persistence, and what types of data exchanges are targets for optimization and the benefits and disadvantages of using persistence with the Application object.
FileSystemObject Object ASP / File Operations
The FileSystemObject object provides access to the file system on the web server, allowing us to manipulate text files, folders and drives from within our code.
TextStream Object ASP / General Development
The TextStream object provides sequential access to the contents of text files. This allows you to read, write, or append characters or lines to a text file.
Wielding the Power of the DataView ASP / Database Integration
When faced with learning a new technology, it's common to try and reproduce the basic functionality you're used to in the old one. In doing that with ADO.NET and trying to reproduce the basics or the recordset object, this article discusses the new and many uses of ADO.NET's DataView object.
Server Object ASP / General Development
The Server object provides access to properties and methods on the server. Much of functionality it provides is simply functionality the web server itself uses in the normal processing of client requests and server responses.