Development

Event Log Event Types

Detailed escriptions of the different event log event types that may occur in the windows event log. The windows event logs can be accessed using development tools to aid in overall management.

Recursive Functions

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 difference between solving a problem iteratively and recursively later.

Speeding Up ASP Page Execution

ASP pages are executed on the fly by a server when they are requested by a visitor. Because they are not compiled, ASP scripts are slow and hold up the processing of an html page. This results in people leaving your site and severely reduces the enjoyment that your asp apps can provide. This short tutorial provides a few tips to increase the execution speed of your asp programs.

Using <% %> correctly in ASP

This article explains why you shouldn't be sprinking &lt;% %&gt; render blocks throughout your HTML code. It's inefficient for the server and for your users!

Using Application variables, and introducing global.asa

Here, you'll find a few example codes that allows you to save thousands of unnecessary database queries using Application variables.

Passing arrays from one page to another

This article explains how to pass the values in an array from one page to another without using session or application variables.

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 them in your applications.

Some Nifty Functions for Passing Variables Around

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

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 800 info) and splits it into the common ###-###-#### format.

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 arrays of objects several layers deep.
Previous ( 1 | 2)