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
<% Option Explicit %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Response.write len("www.ShotDev.Com")
%>
</body>
</html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_len.asp
Screenshot


