Asp
Path Computers    Programming    Asp
All tutorials in Asp
Sort By:    Name   Rating   Views  Comments    Date 
Browse Pages :    1  2  3  >  >> 
Counter in ASP
Submitted 24 April 2008

Learn how to make a hit counter in ASP. A hit counter is an essential part of a site to know how many people are coming to site. Here is an easy way to make a counter. All you need is access to ASP and be able to give a write access to a directory. We're going to save the amount of hits in a .txt file so that we won't need to worry about database connections.

Views: 1126 Comments: 1
Installing ASP on your own computer
Submitted 24 April 2008

If you run Windows 95, Windows 98 or Windows NT 4.0 Workstation you can install Personal Web Server (PWS). PWS is a smaller scale little brother of Internet Information Services (IIS) though still fully functional. As Personal Web Server (PWS) is not shipped with Windows NT or with Windows 95 you will have to download "Windows NT 4.0 Option Pack" from Microsoft. To download the Windows...

Views: 198 Comments: 1
ASP.NET in Dreamweaver 8
Submitted 24 April 2008

You will set up your Dreamweaver MX site, connect to the database, create the DataSet for the DataGrid, and create a default DataGrid. In the following three articles, you will build on what you learn in this article and learn how to customize the DataGrid appearance, make the DataGrid editable, and sort columns in the DataGrid. By the end of the article, you will be comfortable working with...

Views: 223 Comments: 0
String Functions
Submitted 24 April 2008

This tutorial will teach you all of the basic string functions available in ASP using VBScript. I will keep things concise as possible. The following is a list of the functions and an example of each. I hope you will enjoy it.

Views: 323 Comments: 0
Randomizer for ASP
Submitted 24 April 2008

A randomizer is a powerful tool when scripting and programming. Here is a simple but powerful one for ASP.First of all you need to randomize something wich can be done by the command Randomize. You could either just ranomize a number out of nothing by just calling Randomize, but the way to create the "most random" number is to use the servers clock like this:

Views: 260 Comments: 0

AIM profile designs provide us with new possibilities. And this Aim Profile Screenname Viewer tutorial will show you how to make a script to see who has seen your AOL Instant Messenger profile.First, make a file called "sn.html" inside a folder (I've chosen my database folder even though this is a flat file). Leave it blank. Be very attentive while making changes to AIM profile...

Views: 8668 Comments: 0
Reading a Database
Submitted 24 April 2008

Here it is broken down: The first two lines declare the variables Conn and SQLTemp. The next six lines open a connection to your database, and get all the rows from the table. The following Do While Not loop lets u display the data inside the row. The next four lines print out the value of each column in that row. The last bit moves to the next row, ends the loop, and closes the connection to the...

Views: 244 Comments: 0
GLOBAL.ASA IN ASP
Submitted 25 June 2008

The global.asa file is a special file that handles session and application events. This file must be spelled exactly as it is here on this page and it must be located in your websites root driectory. This is a very useful file and can be used to accomplish a variety of tasks.

Views: 921 Comments: 0

It is very useful on image gallery websites to take uploaded gifs or jpegs and automatically create thumbnails from them. It is not simple to do this in ASP.NET 2, but this tutorial will show you how to create high quality jpg thumbnails that are not at all grainy.

Views: 198 Comments: 0
FORMAT SPECIAL DATA
Submitted 25 June 2008

If you want to display numbers from a database on your web page, chances are you will have to do some formatting to get your data to display the way you want it to

Views: 171 Comments: 0
NEW WAY TO HANDLE VARIABLES
Submitted 25 June 2008

My name is Rob Collyer, I lay eyes upon ASP years ago and have been heavily coding since.

Views: 200 Comments: 0
DISPLAY DATA FROM DATABASE
Submitted 25 June 2008

You have your database connection established and now you want to display data from your database on your page.

Views: 156 Comments: 0

When you are writing ASP there are many environments where you can do your work. I use and recommend using Ultradev 4, other ones include Dreamweaver 2 and 3 and Visual Interdev (though these can be a little daunting for the beginner). There are many packages such as Interdev which will assist you in writing code. This may make ASP easier to write but I strongly suggest that you learn to write ASP...

Views: 2238 Comments: 0
ASP.NET 2 Special Purpose Folders
Submitted 25 June 2008

f you are new to ASP.NET then you may have been a bit puzzled to see certain folders (directories) in your project that you didn't create, such as App_Code or App_Data.

Views: 228 Comments: 0

This page describes how to get the value of URL parameters such as ?id=5432 that have been passed to your webpage in the URL, usually by a form that has been submitted. Maybe the URL requested was:

Views: 205 Comments: 0
Browse Pages :    1  2  3  >  >>