Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
My code - Global events: AfterSuccessfulLoginif Session("groupid") = "admin" thenResponse.Redirect "anotherpage.asp"elseResponse.Redirect "admin_list.asp"end if___admin is Custom viewsHow can I redirect anothers users to users_list.asp?
if Session("groupid") = "admin" then Response.Redirect "admin_list.asp"else Response.Redirect "users_list.asp"end if