The string given in the PlainText argument is encrypted, and the resulting cipher text is
converted to a hexidecimal value before being returned as a string.
PlainText
The PlainText argument is the string to be encrypted.
Example: <%
Dim strUserData
Dim strUserName
Dim strPassWord
strUserData = Request.Form("UserData")
If strUserData = "" Then
Request.Redirect "error.asp"
End If
strUserName = Request.Form("UserName")
If strUserName = "" Then
Request.Redirect "error.asp"
End If
strPassWord = Request.Form("PassWord")
If strPassWord = "" Then
Request.Redirect "error.asp"
End If