I have several applications that use the same databases and, therefore, the same web security. After a successful login, the loginprocessing.a5w page is called and redirects the user to the appropriate app a5w page. To this point, the redirect was based upon the user's role. However, now I have three different apps and I would like to direct the user based on which login page they used to login.
Suppose I have index_app1.a5w, index_app2.a5w, and index_app3.a5w. (The login component is in each of these index pages.) Is there any way I can set a variable in the index page that will persist after loginprocessing.a5w is called? If so, please explain how? I want to use the variable to do something like:
if myvar=1
response.redirect("app1.a5w")
endif
if myvar=2
response.redirect("app2.a5w")
end if
if myvar=3
response.redirect("app3.a5w")
end if
Any suggestions?
Thanks,
Donna
Bookmarks