web 2.0

ASP/VBScript TypeName()

ASP/VBScript TypeName() Returns a string that provides Variant subtype information about a variable.

ShotDev Focus:
- Using Asp and TypeName() function.

Example

asp_typename.asp

  1. <% Option Explicit %>  
  2. <html>  
  3. <head>  
  4. <title>ShotDev.Com Tutorial</title>  
  5. </head>  
  6. <body>  
  7. <%  
  8. ReDim strVar1(3)  
  9. Dim strVar2,strVar3,strVar4  
  10. strVar1(0) = 1  
  11. strVar1(1) = 2  
  12. strVar1(2) = 3  
  13. strVar1(3) = 4  
  14.   
  15. strVar2 = "Weerachai Nukitram"  
  16.   
  17. strVar3 = 123456  
  18.   
  19. strVar4 = Array(1,2,3,4,5)  
  20.   
  21. Response.write TypeName(strVar1)&"<br>"  
  22. Response.write TypeName(strVar2)&"<br>"  
  23. Response.write TypeName(strVar3)&"<br>"  
  24. Response.write TypeName(strVar4)&"<br>"  
  25. %>  
  26. </body>  
  27. </html>  

Create a asp file and save to path root-path/myasp/

Run
http://localhost/myasp/asp_typename.asp

Screenshot

ASP/VBScript & TypeName()

.
.
.
Download this script.
Download

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.