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: 42    Displaying: 21 - 40 Pages:   1 2 3

   If...Then...Else / For...Next Instructions   Hits: 1545 

 
A short tutorial on the If....Then...Else instructions sequence in ASP that is very similar to the one in different kind of scripting languages.


Version: n/a   Platform(s): n/a   Updated: Mon Jan 14 2002

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

   Do...Loop / Select...Case Instructions   Hits: 1453 

 
This tutorial covers several important Active Server Pages looping structures, including do..while, do..until, and select case structures.


Version: n/a   Platform(s): n/a   Updated: Mon Jan 14 2002

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

   Introduction to global.asa   Hits: 1282 

 
A short tutorial showing the basic the basic structure of the global.asa file. Describes different objects: Application_OnStart, Application_OnEnd, Session_OnStart, Session_OnEnd. An active servers counter is used as an example.


Version: n/a   Platform(s): n/a   Updated: Mon Jan 14 2002

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

   Subroutines and Include/virtual   Hits: 1233 

 
This tutorial explains the basic use of Subroutines and Include virtual using SSI that may be used in ASP pages to make your code cleaner.


Version: n/a   Platform(s): n/a   Updated: Mon Jan 14 2002

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

   Dictionary object   Hits: 1147 

 
This tutorial explains basics of the Dictionary object by using two examples: translation of a number from English to Spanish and password protection.


Version: n/a   Platform(s): n/a   Updated: Mon Jan 14 2002

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

   Performance Metrics for the ASP Response Object   Hits: 609 

 
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 approach as well as the timing results of the vanilla Response.Write approach in an ASP.NET Web page.


Version: n/a   Platform(s): n/a   Updated: Fri Jan  4 2002

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

   Beginner's Guide to Effective use of Arrays in ASP   Hits: 1600 

 
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.


Version: n/a   Platform(s): n/a   Updated: Tue Aug  7 2001

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

   Creating Dynamic Cascading Style Sheets with ASP   Hits: 1030 

 
This is a short tip on how to build dynamic cascading style sheets using an ASP page. Stylesheets are useful for separating the content and presentation of a Web page. While cascading style sheets are static text files, it shows how to generate dynamic style sheets using ASP.


Version: n/a   Platform(s): n/a   Updated: Wed Jul 11 2001

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

   Displaying All of the Form Variables   Hits: 832 

 
This short tutorial describes a little function that is useful in debugging your ASP pages. This function, FormDataDump(), outputs all of the form variables being passed into a page. Various options for this function allow the developer to view the values in a 'debugger-style' mode, or in a 'quiet-mode,' in which case the form variable output is hidden from the end user.


Version: n/a   Platform(s): n/a   Updated: Fri Jun 29 2001

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

   Implementing Dynamic Arrays of Objects   Hits: 1195 

 
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.


Version: n/a   Platform(s): n/a   Updated: Mon Jun 11 2001

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

   Speed Up Rendering   Hits: 872 

 
This article shows you how to boost the performance of your ASP Web application by improving the speed at which your browser renders your resultant HTML.


Version: n/a   Platform(s): n/a   Updated: Tue Jun  5 2001

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

   Using the Application Object to Improve Performance   Hits: 535 

 
This article discusses the usage of persistence with the Application object in detail. Explains when to use Persistence, advantanges and disadvantages of using Persistence, and what types of data exchanges are targets for optimization and the benefits and disadvantages of using persistence with the Application object. Example code available for download.


Version: n/a   Platform(s): n/a   Updated: Fri May 11 2001

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

   Stripping HTML Tags using Regular Expressions   Hits: 2658 

 
This article examines how to strip HTML tags using regular expressions. Regular expressions are nifty little buggers that can be used to perform advanced string pattern matching and replacing.


Version: n/a   Platform(s): n/a   Updated: Wed Apr 25 2001

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

   String Functions (Len, Left, Mid, Right)   Hits: 3981 

 
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.


Version: n/a   Platform(s): n/a   Updated: Fri Apr 20 2001

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

   ASP Quick Debug   Hits: 987 

 
The author writes "When it comes to debugging ASP, you often want to keep track of the variable values throughout the script. This article introduces a procedure that, when invoked, displays all variables in a script along with their values and internal types."


Version: n/a   Platform(s): n/a   Updated: Thu Jan 25 2001

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

   Built in ASP Events   Hits: 1387 

 
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.


Version: n/a   Platform(s): n/a   Updated: Wed Jan  3 2001

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

   Trimming Strings - The Right Way   Hits: 1117 

 
This short tutorial provides two simple solutions for trimming strings: the easy way and the right way. The right way will ensure not to return a string with the last word cut off.


Version: n/a   Platform(s): n/a   Updated: Wed Jan  3 2001

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

   Passing arrays from one page to another   Hits: 2849 

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


Version: n/a   Platform(s): n/a   Updated: Tue Dec 12 2000

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

   Using Application variables, and introducing global.asa   Hits: 1545 

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


Version: n/a   Platform(s): n/a   Updated: Thu Nov 16 2000

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

   Using <% %> correctly in ASP   Hits: 892 

 
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!


Version: n/a   Platform(s): n/a   Updated: Wed Oct 11 2000

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

  Total: 42    Displaying: 21 - 40 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