Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

ASP Arrays

An array is a contiguous space of memory allocated for storing some data. An array is declared with the keyword DIM and then the array name and then the size of the array in parentheses. Here is an example.

<%

DIM strWdays(6)
DIM i
strWdays (0) = "Sunday"
strWdays (1) = "Monday"
strWdays (2) = "Tuesday"
strWdays (3) = "Wednesday"
strWdays (4) = "Thursday"
strWdays (5) = "Firday"
strWdays (6) = "Saturday"

for i = 0 to 6
response.write(strWdays (i) & "<br>")
next

%>

Array () function:

The Array () function can be used to initialize values to an array. Below is the example.

<%
DIM strCities
strCities = Array ("New York", "Los Angeles", "Miami")
%>

 
     
   
ASP Tutorial
 
  ASP Introduction
ASP Introduction
  ASP Syntax
ASP Syntax
  ASP JavaScript
ASP JavaScript
  ASP Variables
ASP Variables
  ASP Arrays
ASP Arrays
  ASP If Statement
ASP If Statement
  ASP Procedures
ASP Procedures
  ASP Functions
ASP Functions
  ASP Sessions
ASP Sessions
  ASP Cookies
ASP Cookies
  ASP Application Object
ASP Application Object
  ASP Forms
ASP Forms
  ASP Comments
ASP Comments
  ASP Email
ASP Email
  ASP ADO
ASP ADO
  ASP File
ASP File
 
 
 
Web Designing Tutorials
  HTML Tutorial
HTML Tutorial
  DHTML Tutorial
DHTML  Tutorial
  CSS Tutorial
CSS Tutorial
  XHTML Tutorial
XHTML Tutorial
 
Programming Languages Tutorials
  C Language Tutorial
C Language Tutorial
  C++ Tutorial
C++ Tutorial
  Java Language Tutorial
Java Language Tutorial
  Data Structure Theory Tutorial
Data Structure Theory Tutorial
 
Server Side Scripting Tutorials
  PHP Tutorial
PHP Tutorial
  SQL Tutorial
SQL Tutorial
  ASP Tutorial
ASP Tutorial
 
Client Side Scripting Tutorials
  JavaScript Tutorial
JavaScript Tutorial
  VBScript Tutorial
VBScript Tutorial
 
 
 
POPULAR E-BOOKS
 
Download PodcastingForFun&Profit Ebook PodcastingForFun&Profit
   
Download Pay Per Click Marketing Guide Ebook Pay Per Click Marketing Guide
   
Download 7 Great Lies of Network Marketing Ebook 7 Great Lies of Network Marketing
   
Download How To Accelerate Your Internet - A practical guide to Bandwidth Management and Optimisation using Open Source Software Ebook How To Accelerate Your Internet - A practical guide to Bandwidth Management and Optimisation using Open Source Software
   
Download PHP 5 Power Programming  Ebook PHP 5 Power Programming
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz