This topic is locked

Single SingOn

4/1/2008 9:42:36 AM
ASPRunnerPro General questions
D
diazpty author

How do I integrate windows authentication so that the users once they login into the Microsoft server do not have to log into the ASPRunner application?

Admin 4/1/2008

Create a BeforeProcess event of the Login page and use the following code:

if Request.ServerVariables("LOGON_USER")<>"" then

SESSION("UserID") = Request.ServerVariables("LOGON_USER")

SESSION("AccessLevel") = ACCESS_LEVEL_USER

Response.Redirect "Menu.asp"

end if
D
dunga 5/8/2008

hi, i I did not use the before edit proccess using the ASP runner application then:
WHERE in the loging.asp page I have to put the above code???

J
Jane 5/8/2008

Hi,
add the above code to the BeforeProcess event on the Events tab.