This topic is locked

Redirect to another page

2/11/2008 10:38:50 AM
ASPRunnerPro General questions
J
juns author

My code - Global events: AfterSuccessfulLogin
if Session("groupid") = "admin" then

Response.Redirect "anotherpage.asp"

else

Response.Redirect "admin_list.asp"

end if
___
admin is Custom views
How can I redirect anothers users to users_list.asp?

Sergey Kornilov admin 2/12/2008
if Session("groupid") = "admin" then

Response.Redirect "admin_list.asp"

else

Response.Redirect "users_list.asp"

end if