The DecryptStringBinary method decrypts the raw binary cipher text produced by a
call to EncryptStringBinary, and returns the resulting plain text as a string value.
CipherText
The CipherText argument is the raw binary value to be decrypted.
Example: <%
Dim lngCustomerID
Dim lngCardType
If Request.Form("CustomerID") = "" Then
Response.Redirect "error.asp"
End If
lngCustomerID = CLng(Request.Form("CustomerID"))
If Request.Form("CardType") = "" Then
Response.Redirect "error.asp"
End If