Development
Results 1 - 20 of 44
Build a Drop Down menu using an ASP Recordset
This tutorial is about a piece of ASP functionality that is as old and common as grandma's blueberry pie ---> how to build a drop down menu using ASP. Specifically, how to create a select menu <option> element for each record returned in an ASP...
(show more)
SQL statements in ASP - beware the apostrophe
One of the most common problems encountered in ASP when using SQL statements, is the existence of an apostrophe (i.e. single quotation mark) in an SQL query string. I say problem because SQL Server (or any T-SQL database server) interprets single quotes...
(show more)
Event Log Event Types
Detailed descriptions 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.
Bubble sorting in ASP
This is a script aimed to order an array with bubble sort technique. This algorithm of sorting of array is probably the most known for lack of being the most effective.
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 Application variables programatically.
PDF on the fly for free
Learn how to convert HTML webpage to PDF for free by using HTMLDoc. With a simple installation of htmldoc.exe (opensource), by sending a command line from ASP. New version of the script is provided. Feedback will be appreciated
Bullschmidt ASP Developer Tips
ASP Web developer tips and guidelines including such things as included files, database passwords, post-back pages, flushing the buffer...
Bullschmidt Dependent Listboxes
You can use dependent listboxes for example to let a user choose a rep in a reps listbox and then have only the customers for that rep be shown in the customers listbox.
5.1 Surround Sound on the Web
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.
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
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 a detailed tutorial on how to refine your scripts and ASP features for maximum speed.
Creating Parent-Child Relationships
This tutorial explains how to do recursive subroutines in ASP (VBScript). Use this algorithm to create threaded discussions, directories, or whatever use you have for it.
Left() Mid() Right()
There will come a time when you need to dice up a string which is all one word or a number. In this particular case, Split() won't work for you. This page explains how Left() Mid() and Right() work.
Using The Split() 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.
The Len() Function
Overview and a quick example of the Len() function that calculates the LENGTH of a string.
Arrays in plain English
There are many ways to use arrays. This page shows a couple of quick examples for using arrays in ASP.
Query String Example
A short tip on passing info between pages via a query string.
Select Case Example
Many times we need to perform an action or display something different based on some different parameters. Using select case is one such way to do this.
If ElseIf End If Example
Many times we need to perform an action or display something different based on some different parameters. Using If ElseIf End If is one such way to do this.
Math functions
Usage of the following math functions are shown: Abs(), Atn(), Cos(), Exp(), Fix(), Hex(), Int(), Log(), Oct(), Round(), Sgn(), Sin(), Sqr(), Tan().
