web 2.0

ASP/VBScript Len()

ASP/VBScript Len() Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.

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

Example

asp_len.asp

  1. <% Option Explicit %>  
  2. <html>  
  3. <head>  
  4. <title>ShotDev.Com Tutorial</title>  
  5. </head>  
  6. <body>  
  7. <%  
  8. Response.write len("www.ShotDev.Com")  
  9. %>  
  10. </body>  
  11. </html>  

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

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

Screenshot

ASP/VBScript & Len()

.
.
.
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.