The net's largest PHP, CGI, Perl, JavaScript and ASP script collection and resource web portal
  New Listings
New Listings
Most Popular
Most Popular
Top Rated
Top Rated
Discussion
Discussion
Link to Us!
Link To Us
Search For:         
   
 
Sponsors


Categories

Ajax
ASP
ASP.NET
C and C++
CFML
CGI and Perl
Flash
Java
JavaScript
PHP
Python
Remotely Hosted
Ruby on Rails
Tools and Utilities
Web Hosting
XML

Sponsor Links


Home :: ASP :: Tips and Tutorials :: Development
Sort Listings By:       Click if you want to be notified of new or updated links in this category
  Total: 44    Displaying: 1 - 20 Pages:  1 2 3

   Build a Drop Down menu using an ASP Recordset   Hits: 151 

 
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 recordset. I'll show you how to do it in 4 simple steps...


Free   Version: n/a   Platform(s): windows   Updated: Fri Aug 15 2008

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   SQL statements in ASP - beware the apostrophe   Hits: 85 

 
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 as the representation of a string value - that is, as delimiters. Therefore to avoid conflict between single quote delimiters and apostrophes we need to let ASP know that we want an actual apostrophe and not the end of the string. My short tutorial will show you how.....so let's get started


Free   Version: n/a   Platform(s): windows   Updated: Fri Aug 15 2008

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Event Log Event Types   Hits: 798 

 
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.


Free   Version: 1.1   Platform(s): windows   Updated: Sun Jul 27 2008

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Bubble sorting in ASP   Hits: 1042 

 
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.


Free   Version: 1.0   Platform(s): windows   Updated: Mon Nov  7 2005

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Content Variables   Hits: 1059 

 
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.


Free   Version: n/a   Platform(s): windows   Updated: Tue Oct 25 2005

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PDF on the fly for free   Hits: 4118 

 
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


Free   Version: n/a   Platform(s): windows   Updated: Thu Sep 29 2005

Listing Details
Visit
Download
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Bullschmidt Dependent Listboxes   Hits: 791 

 
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.


Free   Version: 2.0   Platform(s): windows   Updated: Sat Apr 16 2005

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Bullschmidt ASP Developer Tips   Hits: 849 

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


Free   Version: 2.0   Platform(s): n/a   Updated: Sat Apr 16 2005

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   5.1 Surround Sound on the Web   Hits: 652 

 
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.


Version: n/a   Platform(s): IIS, Windows XP   Updated: Tue Jun  1 2004

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Some Nifty Functions for Passing Variables Around   Hits: 2978 

 
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


Version: n/a   Platform(s): n/a   Updated: Thu Aug 28 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Maximize Your ASP Performance   Hits: 2068 

 
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.


Version: n/a   Platform(s): n/a   Updated: Wed Aug 27 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Creating Parent-Child Relationships   Hits: 1004 

 
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.


Version: n/a   Platform(s): n/a   Updated: Mon Aug 11 2003

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Using The Split() Function   Hits: 3228 

 
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.


Version: n/a   Platform(s): n/a   Updated: Mon Jun 17 2002

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Left() Mid() Right()   Hits: 2688 

 
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.


Version: n/a   Platform(s): n/a   Updated: Mon Jun 17 2002

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Arrays in plain English   Hits: 1169 

 
There are many ways to use arrays. This page shows a couple of quick examples for using arrays in ASP.


Version: n/a   Platform(s): PWS/IIS   Updated: Mon Jun 17 2002

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   The Len() Function   Hits: 1173 

 
Overview and a quick example of the Len() function that calculates the LENGTH of a string.


Version: n/a   Platform(s): n/a   Updated: Mon Jun 17 2002

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Query String Example   Hits: 2004 

 
A short tip on passing info between pages via a query string.


Version: n/a   Platform(s): n/a   Updated: Mon Jun 10 2002

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Select Case Example   Hits: 1759 

 
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.


Version: n/a   Platform(s): n/a   Updated: Mon Jun 10 2002

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   If ElseIf End If Example   Hits: 1217 

 
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.


Version: n/a   Platform(s): n/a   Updated: Mon Jun 10 2002

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Math functions   Hits: 1312 

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


Version: n/a   Platform(s): n/a   Updated: Fri May 24 2002

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

  Total: 44    Displaying: 1 - 20 Pages:  1 2 3

Share


Register | FAQ/Support | Contact Us | About Us | Getting Rated | Link to Us | Bookmark Us | Advertising Info | Terms of Use | Privacy Policy
Copyright © 2008 iNET Interactive. All rights reserved.
Other iNET Interactive Sites:
Web Hosting Talk | dBForums | Mac Forums | Hosting Catalog