Published in: ASP
'accepts: string,lengh to trim 'returns: trims character to specified length function TrimLength(sStr,iLength) if (len(sStr) > iLength) then TrimLength = left(sStr,iLength) & "..." else TrimLength = sStr end if end function
You need to login to post a comment.
