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
This function is very useful, if you wish to get date of current SQL server date and time. You may use this function to fill some rows automatically with current time or using with DateDiff function to return the number between current time.
There are a number of ways to have users input dates into your application. Dropdown menus are the preferred method employed as there will certainly be less error checking on dropdown input as compared to textbox input. Utilizing the date() functions the
Dealing with dates, especially in anything other that US standard format, can be a challenge. This tutorial discusses the scripting needed to handle them properly for a range of applications. It also lists reference for each date/time function.
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.