ironhide1975
Programmer
Is there a module or preferred method for encrpting passwords in a SQL server field using ASP classic.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'Function AnsiCharactersToUnicodeByteString
Function AtoU(TheString)
Dim i
For i = 1 to Len(TheString) Step 2
AtoU = AtoU & ChrW(Asc(Mid(TheString, i)) * 256 + Asc(Mid(TheString & Chr(0), i + 1)))
Next
End Function