string = Encrypt(string)
Example Usage:
ASP Source Code:<% = Encrypt("Where are my shoes?") %>
<% Private Function Encrypt(ByVal string) Dim x, i, tmp For i = 1 To Len( string ) x = Mid( string, i, 1 ) tmp = tmp & Chr( Asc( x ) + 1 ) Next tmp = StrReverse( tmp ) Encrypt = tmp End Function %>