Lets talk about the Len() function
for just a minute. Len as you may have deduced is LENGTH. It's really
pretty straight forward. Here's a quick example:
Lets talk about the Len() function for just a minute. Len as
you may have deduced is LENGTH. It's really pretty straight forward. Here's a
quick example:
<%
Dim strName
strName = "Paco's Drivers"
Response.Write Len(strName) %>
This will write: 14
This is because what Len() does is takes the string "strName"
and counts how many places are in it.
Someday this function will come in useful to you. If you
want to see a working example of Len(), take a look at
Simple
Counter Using Graphics