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.
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.
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.
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.
Session Object ASP / General Development
The Session object stores information needed for a particular user's session on the web server. It is automatically created every time when an ASP page from the web site or web application is requested by a user who does not already have a session, and it remains available until the session expires.
Application Object ASP / General Development
An Active Server Page application is actually a collection of ASP files in a virtual directory and associated sub-directories. The Application object is used to control and manage all items that are available to all users of an Active Server application. The Application items can be variables needed for all users in the application, or they can be instantiated objects that provide special server-side functionality.
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.
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 Performance ASP / General Development
The first area I want to test is integer arithmetic calculations. The following ASP page calculates prime number starting from number 3, and repeats the test many times.
Formating Numbers and Digits ASP / General Development
ASP 3.0 supports us formating numbers and digits. You may remove any digits or add a decimal point. You may modify a currency or using a number in a mathematic operation.
ASP : SSI Another Way ASP / General Development
This is another SSI tutorial written by a friend, it shows another way of looking at SSI and also shows you some new tricks and tips. Server Side Include (SSI) files are a great way to simplify management of a web site. If you have a 100-page site and all 100 pages have a left-side navigation menu, why have the menu written 100 times?
ASP : Server Side Includes ASP / General Development
It doesn't matter if you are a HTML pro moving on to XHTML or a complete beginner to writing pages for the internet. The uses of SSI are many fold and work wonders for dynamic or static pages. For the purposes of this tutorial I will be dealing with static pages only.
Banner Control Wizard ASP / Scripts
This application will give you the ability to rotate banners on all pages in your site rotating them randomly while giving them equal page views at the same time
VBScript Functions : DatePart() ASP / Date and Time
With DatePart() function in VBScript language you could take only some parts of current time and display/use in your applications. Following examples will show you and give a brief on this function.
Get Your Data Faster with a Data Cache ASP / Database Integration
Storing frequently used lookup data in a database is a great idea (e.g. order status codes, state names, etc.) that saves tremendous amounts of time in design and maintenance. However, retrieving that data from the database every time it is needed is very inefficient. This article describes how to use Application variables to cache frequently used lookup data in memory to achieve lightning fast access times.