Asp
Path Computers    Programming    Asp
All tutorials in Asp
Sort By:    Name   Rating   Views  Comments    Date 
Browse Pages :    <<  <  1  2  3  >  >> 
The Connection Object
Submitted 25 June 2008

All interactions with the database take place on the logon.asp page. This is were we check for valid accounts and passwords.

Views: 795 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: 778 Comments: 0

As described on the previous page, the ServerVariables Collection within the Request Object is an array of values identified by names. As such, this collection is what is traditionally called an "associative array," meaning a data structure of values indexed by names.

Views: 775 Comments: 0
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: 736 Comments: 1
Displaying Server Values In ASP
Submitted 25 June 2008

he manner in which Active Server Pages operates can be illustrated very simply by using VBScript functions to display the system date and time. It is assumed that you have basic familiarity with the Visual Basic language, of which VBScript is a subset. Even if you do not know Visual Basic, you should be able to follow the examples and learn VBScript along the way.

Views: 732 Comments: 0
Server Variables In ASP
Submitted 25 June 2008

The ASP Response Object supplies several useful properties and methods for producing server output destined for a Web page. For example, we have used the Response.Write() method to display server data and to write HTML code to a page. As we proceed through this tutorial, other features of the Response Object are introduced as needed.

Views: 720 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: 646 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: 577 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: 545 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: 542 Comments: 0
ASP Components
Submitted 25 June 2008

There are two major components of Active Server Pages along with five built-in software objects that permit creation of data-driven Web pages. These components and objects provide a comprehensive set of properties, methods, and collections that the developer can use to help carry out information processing tasks.

Views: 530 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: 528 Comments: 0
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: 526 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: 526 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: 467 Comments: 0
Browse Pages :    <<  <  1  2  3  >  >>