|
|
Sergey Kornilov admin 10/31/2006 |
|
You need to use Session("UserID") Sub AfterSuccessfulLogin() '** Redirect to another page **** if Session("UserID") = "Admin" then Response.Redirect "DBUSER_List.asp" else Response.Redirect "COMPANY_INFORMATION_List.asp" end if End Sub |
|