The DecryptStringHex method decrypts a string of hexidecimal-encoded cipher text produced by a
call to EncryptStringHex, and returns the resulting plain text as a string value.
CipherText
The CipherText argument is the string to be decrypted.
Example: <%
Dim strUserName
Dim strPassWord
strUserName = Request.Form("UserName")
If strUserName = "" Then
Response.Redirect "error.asp"
End If
strPassWord = Request.Form("PassWord")
If strPassWord = "" Then
Response.Redirect "error.asp"
End If