![]() |
Sergey Kornilov admin 3/17/2004 |
Currently you can do it do manually. Here is the some info that can help you doing this:
if Session("UserType")="Type2" then CheckSecurity = False Exit Function end if
|
|
501037 3/18/2004 |
Your explaination was clear, but I do not have asp knowledge. Please elaborate further step 2 and 3. |
![]() |
Sergey Kornilov admin 3/18/2004 |
Here is the code section that you need to modify in login.asp file. See my changes in bold: If Not rs.EOF Then Session("UserID") = Request("username") Session("AccessLevel") = ACCESS_LEVELUSER if Request("username")=cAdminUserID then Session("AccessLevel") = ACCESS_LEVEL_ADMIN Session("UserType") = rs("UserType") Response.Redirect Replace("menu.asp", "%20", " ") Else
|
|
501038 3/18/2004 |
I did modify the secury check Point and the .._list.asp files. Please see below what I did with .._list.asp files |