Ad Manangement Tutorial

A tutorial that shows how to create a simple Ad rotation system based on ASP-SQL Server combination

The system is intended to provide easy random rotation and counting of Ad showing and clicks. All Ad info (except images, which are asumed to be in current directory) is stored in SQL server table caled Banners….

Image Gallery Tutorial

A tutorial that tells about to create dynamically changeable image galleries

This article explains how to dynamically change static HTML Web galleries so that the Web galleries match the color, layout, and design of a Web site …

Mailing List Tutorial

A tutorial that shows how to create a mailing list program using ASPASP tutorials

First we create an Access database List.mdb. Then we create a table, EmailList  with two fields: ID and Email.  ID will be used as our primary key and Email will be used to store the e-mail addresses …

Event Calendar Tutorial

A tutorial that shows how to create event calendar using ASP

For our event calendar, we need an extremely simple database. In fact it only has one table and three fields. Built database in MS SQL Server 6.5, but you could use any system with ODBC drivers …

ASP-XML Chat Tutorial

A tutorial that shows how to create a chat module using ASP & XML.

Using this chat system, we can chat how we conventionally chat, in public as well as private modes. The message from the browser is sent to the server via Microsoft's XMLHTTP Object. Using this same XMLHTTP Object, the messages are retrieved from the server and displayed on the page. The users list comes from the server along with messages. It is currently configured so that the browser requests the current users list from the server every 5 seconds….

Text Based Search Engine Tutorial

A tutorial that shows how to create a text based search engine

Using the FileSystemObject, you can search through all of the files in a particular directory that contain a particular string. To allow for this functionality, you will need two ASP pages: one that presents the user a form to enter the string they wish to search for; the second needs to take this string, iterate through all of the files in a particular folder, and determine which of these files contain the string…

Multifeatured ASP Shopping Cart Tutorial

A tutorial that shows how to create a Fully Functional, Multifeatured ASP Shopping Basket

To create this basket application, the following software needs to be in place: MS SQL Server 7.0 or higher, IIS 4.0 or higher, and ADO 2.0 or higher.The shopping basket is composed of two SQL tables that store the basket data, stored procedures that interact with the tables to insert, retrieve, or modify data in them (the back end), and three ASP pages on the Web server (the front end) that simply contain logic to make the database calls. In-depth analyses of these layers follow elow …

Rating System Tutorial

A tutorial that shows how to create an artcile rating system

A rating system is a great way to get feedback from your site's visitors.Basically, each article is displayed with some radio buttons that allow visitors to rate each article on a scale of 1 to 10. When a user votes, an average visitor rating is worked out and is displayed alongside the article …

Guest Book Tutorial

A tutorial that shows how to create a simple guestbook application

A guestbook tool to allow visitors to share their comments with other visitors. To develop this, we use ASP & MS Access as Database…

Discussion Board Tutorial

A tutorial that shows how to add discussion forums to your website

The Discussion Forum is built using the same methodology as the Site Membership database. All logic that manipulates the database is contained within stored procedures and database triggers. The ASP scripts are simply a middle tier for interfacing the user with the database. The front-end client is a simple, script-free HTML user-interface …