It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Tutorials

Log In Sponsors

ASP Tutorials

SHOWING LATEST TUTORIALS
Often times it is necessary to take a string and dice it up in order to extract portions to be used for some obscure purpose. Enter the Split() function. Split is a very easy concept to grasp. Decide where you want to split your string and away you go.
Overview and a quick example of the Len() function that calculates the LENGTH of a string.
ASP Web developer tips and guidelines including such things as included files, database passwords, post-back pages, flushing the buffer...
A short tip on passing info between pages via a query string.
Here are a set of very useful functions that allows you to pass variables around via forms, querystrings, and/or cookies. Source code available for download. More free help at www.webforumz.com
This article takes a look at three different ways to output content using Response.Write: using context switching, simple Response.Write statements, and Response.Write statements within a With block. Also examines the performance implications of each appr
A function that calls itself repeatedly, satisfying some condition is called a Recursive Function. Using recursion, we split a complex problem into its single simplest case. The recursive function only knows how to solve that simplest case. You'll see the
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 arrays of objects several layers deep.
Tutorial: Determine if a client and user agent meet the requirements to deliver full 5.1 surround sound to your web visitor. Topics covered include client machines, user agents, media players, http headers and MIME types.
This step-by-step tutorial covers the basics from dynamic resizing of arrays, to useful array functions, to finding elements in an array and passing an array from page to page.
This is a simple array sorting function in ASP.
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 a detailed tutorial on how to refine your scripts and ASP features for maximum speed.