web 2.0

ASP/VbScript Array()

ASP/VBScript Array() Provides methods for creating, manipulating, thereby serving as the base class for all arrays in the common language runtime.

ShotDev Focus:
- Using ASP and Array.

Example 1

  1. <% myarray = Array("A""B""C""D") %>  
  2. <% =myarray(0) %> <br>  
  3. <% =myarray(1) %> <br>  
  4. <% =myarray(2) %> <br>  
  5. <% =myarray(3) %> <br>  

Example 2

  1. <%  
  2. Option Explicit  
  3. Dim i,arrVar(4)  
  4. arrVar(0) = 1  
  5. arrVar(1) = 2  
  6. arrVar(2) = 3  
  7. arrVar(3) = 4  
  8. arrVar(4) = 5  
  9.   
  10. For i = 0 To UBound(arrVar)  
  11. Response.write arrVar(i)&"<br>"  
  12. Next  
  13. %>  

Example 3

  1. <%  
  2. Option Explicit  
  3. Dim i,arrVar(4,1)  
  4. arrVar(0,0) = 1  
  5. arrVar(0,1) = 1.1  
  6. arrVar(1,0) = 2  
  7. arrVar(1,1) = 2.2  
  8. arrVar(2,0) = 3  
  9. arrVar(2,1) = 3.3  
  10. arrVar(3,0) = 4  
  11. arrVar(3,1) = 4.4  
  12. arrVar(4,0) = 5  
  13. arrVar(4,1) = 5.5  
  14.   
  15. For i = 0 To UBound(arrVar)  
  16. Response.write arrVar(i,0)&" - "&arrVar(i,1)&"<br>"  
  17. Next  
  18. %>  
1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.