Ted S
|
| Posted: 02/24/2003, 9:12 AM |
|
My question is this: I have successfully created an application using CC with ASP [includes admin and many levels]. I am having trouble with running multiple applications on the same domain.
I have read the previous strings where there were issues with users logged on one application were also logged on to the other. I am having the same issues and cannot resolve using ASP.
I have made basic corrections with renaming tables/all fields, etc. and no luck. I have a hunch I must insert events at login. Can some assist?
Thanks in advance for your time,
Ted S.
|
|
|
 |
Kip Dole
|
| Posted: 02/24/2003, 9:49 AM |
|
*// = Kip's Comments GOOD LUCK!
*// Hope this helps, Ted this worked for me, this was Ken H sugguestion.
*// Go to the login page and then the login in forms properties.
*// Next Go to events
*// Go to Custom Login
*// Click the Obtain Generated Code
*// Add Session("xMyApplication") = "MYHELP"
*// Example Code Below from custom login and also
'-------------------------------
Session("xMyApplication") = "MYHELP"
'-------------------------------
*// Click the modules tree
*// Go to Common
*// Click the Obtain Generated Code Button
*// Find Verify user's security level...
*// Check the value of xMyapplication ...
'-------------------------------
' Verify user's security level and redirect to login page if needed
'-------------------------------
function CheckSecurity(iLevel)
if Session("UserID") = "" OR Session("xMyApplication") <> "MYHELP" then
cn.Close
|
|
|
 |
|