Contents

 
Home
ASPRunner Professional 7.1 manual
Prev Page Next Page
 
 

Implementing 'single sign on' feature

 

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.

yellowbulbNote: 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'.

Converted from CHM to HTML with chm2web Standard 2.85 (unicode)