Easy login and logout links

The following formula is very useful to provide login/logout links for those servers that have session authentication enabled. The login link show only when the user has not authenticated. The logout link only shows when they are authenticated. The logout link also redirects after the logout, back to the current database, but this can easily be changed by modifying the portion of the formula directly after the "Redirectto" section.


Place the following formula in Computed Text

REM "Script to create login/logout link";
MyDB :=@ReplaceSubstring(@Subset(@DbName;-1);"";"/");
@SetTargetFrame("_top");
"[<a href=""+@If(@Name([CN];@UserName) = "Anonymous";
 "/"+MyDB+"?OpenDatabase&Login" target=_top>Login</a>]";
 "/"+MyDB+"?Logout&Redirectto="+MyDB+"" target=_top>Logout</a>]")

This was first published in December 2002

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.