Best Tutorials website
Latest tutorials

Advertisment

Maximize Your ASP Performance

Maximize Your ASP Performance

Active Server Pages give great performance, but you can make them even faster with a few tweaks to your code and database connections. Here's...


Views: 995 | Rating star | by Ben
ASP - Development

Bullschmidt ASP Developer Tips

Bullschmidt ASP Developer Tips

ASP Web developer tips and guidelines including such things as included files, database passwords, post-back pages, flushing the buffer...


Views: 931 | Rating star | by Daniel
ASP - Development

Content Variables

Content Variables

This is a simple one page example of how to display all Server, Application and Session variables. Also shows how to add & delete Session and...


Views: 978 | Rating star | by Jason
ASP - Development

Math functions

Math functions

Usage of the following math functions are shown: Abs(), Atn(), Cos(), Exp(), Fix(), Hex(), Int(), Log(), Oct(), Round(), Sgn(), Sin(), Sqr(), Tan().


Views: 936 | Rating star | by Adam
ASP - Development

Compare strings

Compare strings

Self explaining sort scripts to show how to compare strings: Basics, Compare two strings for similarity, Find position of a substrings within a...


Views: 933 | Rating star | by Sean
ASP - Development

if...Then...Else / For...Next Instructions

if...Then...Else / For...Next Instructions

A short tutorial on the If....Then...Else instructions sequence in ASP that is very similar to the one in different kind of scripting languages.


Views: 645 | Rating star | by Sarah
ASP - Development

Introduction to global.asa

Introduction to global.asa

A short tutorial showing the basic the basic structure of the global.asa file. Describes different objects: Application_OnStart, Application_OnEnd,...


Views: 891 | Rating star | by Troy
ASP - Development

Do...Loop / Select...Case Instructions

Do...Loop / Select...Case Instructions

This tutorial covers several important Active Server Pages looping structures, including do..while, do..until, and select case structures.


Views: 749 | Rating star | by Source
ASP - Development

Subroutines and Include/virtual

Subroutines and Include/virtual

This tutorial explains the basic use of Subroutines and Include virtual using SSI that may be used in ASP pages to make your code cleaner.


Views: 917 | Rating star | by Isac
ASP - Development

Dictionary object

Dictionary object

This tutorial explains basics of the Dictionary object by using two examples: translation of a number from English to Spanish and password...


Views: 886 | Rating star | by Mark
ASP - Development

Performance Metrics for the ASP Response Object

Performance Metrics for the ASP Response Object

This article takes a look at three different ways to output content using Response.Write: using context switching, simple Response.Write...


Views: 799 | Rating star | by Tutorial
ASP - Development

Beginner's Guide to Effective use of Arrays in ASP

Beginner's Guide to Effective use of Arrays in ASP

This step-by-step tutorial covers the basics from dynamic resizing of arrays, to useful array functions, to finding elements in an array and...


Views: 0 | Rating star | by Simon
ASP - Development

Creating Dynamic Cascading Style Sheets with ASP

Creating Dynamic Cascading Style Sheets with ASP

This is a short tip on how to build dynamic cascading style sheets using an ASP page. Stylesheets are useful for separating the content and...


Views: 789 | Rating star | by Jarry
ASP - Development

Displaying All of the Form Variables

Displaying All of the Form Variables

This short tutorial describes a little function that is useful in debugging your ASP pages. This function, FormDataDump(), outputs all of the form...


Views: 988 | Rating star | by Sarah
ASP - Development

Implementing Dynamic Arrays of Objects

Implementing Dynamic Arrays of Objects

Using classes in ASP 3.0 we can create dynamic arrays of objects. This article presents a sample code showing how to implement a class of dynamic...


Views: 916 | Rating star | by Donald
ASP - Development

Using the Application Object to Improve Performance

Using the Application Object to Improve Performance

This article discusses the usage of persistence with the Application object in detail. Explains when to use Persistence, advantanges and...


Views: 747 | Rating star | by Sarah
ASP - Development

Stripping HTML Tags using Regular Expressions

Stripping HTML Tags using Regular Expressions

This article examines how to strip HTML tags using regular expressions. Regular expressions are nifty little buggers that can be used to perform...


Views: 767 | Rating star | by Stephen
ASP - Development

String Functions (Len, Left, Mid, Right)

String Functions (Len, Left, Mid, Right)

This is a short exmaple that demonstrates the text manipulation functions in .asp. It takes a string of ten numbers 8005551212 (the 800 number for...


Views: 885 | Rating star | by Steve
ASP - Development

ASP Quick Debug

ASP Quick Debug

The author writes 'When it comes to debugging ASP, you often want to keep track of the variable values throughout the script. This article...


Views: 862 | Rating star | by Source
ASP - Development

Built in ASP Events

Built in ASP Events

There are 8 events available in ASP grouped by Global Events, Class Events, and Transactional Events. This is a nice summary tutorial on how to use...


Views: 848 | Rating star | by Sarah
ASP - Development