|
ASPRunnerPro allows you to use integrated windows authentication
so that the users once they login into the Windows domain do not
have to log into the ASPRunner application (applies to ASP
applications running on Internet Information Server). For this
purpose you can use BeforeProcess event of the Login
page.
Note: Change
the values listed in red to
match your specific needs.
|
if Request.ServerVariables("LOGON_USER")<>"" then
Session("UserID") = Request.ServerVariables("LOGON_USER")
Session("AccessLevel") = ACCESS_LEVEL_USER
Response.Redirect "menu.asp"
response.end
end if
|
This feature is also know as 'single login' or 'Windows
authentication'.
|