UserNotes
The UserNotes property gets or sets a specified user's password.
Once you have the current username (with CurrentUserName),
use this function to get the user's notes out of the internal database.
If you are using an ODBC database, use ASP/ADO to get the user details out of your ODBC database instead.
Syntax
UserNotes (userName)
Parameters
-
userName
-
Specifies the name of the user.
Example
The following gets a user's notes.
<%
usingAuthentiXStandard = true
if (usingAuthentiXStandard) then
Set AuthX = Server.CreateObject("AUTHXOCX.AuthXOCXCtrl.1")
else
Set AuthX = Server.CreateObject("AUTHXISP.AuthXOCXCtrl.1")
protectedDomain = Request.ServerVariables("LOCAL_ADDR")
'protectedDomain = "hostheader.com"
AuthX.SetVirtualDomain protectedDomain, Request.ServerVariables("SCRIPT_NAME")
AuthX.SetVirtualDomainPassword("")
end if
%>
Brian's notes ares
<%= AuthX.UserNotes("Brian") %>
Applies To
AuthentiX OCX Component
http://www.flicks.com/authentix/discover/main.htm