The ReadKeyFile method retrieves the cipher key value from a file produced by a call to the WriteKeyFile
method, and assigns it to the Key object.
FileName
The FileName is the full pathname of the file from which the cipher key value will be read.
If the specified file does not exist, the method will throw an error.
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