| Added: February/05/2008 at 3:49am | IP Logged
|
|
|
I would like to explain.
I set up my users with a group Id and using the new facility referred to in the help section of the application I set up my pages.
From the help section
Using Groups Like Access Levels ASPProtect v8.x has a new feature called groups.
Groups are meant as a replacement for using the access levels as they are much more powerful. Support for pages protected using access levels is left in tact for backward compatiability for a customer that was using them.
____________________________________________________________ _________
No group redirect feature? What I was referring to is in the User admin
|
Redirection_URL |
< size=40 name=Redirection_URL> This is a URL a user will be redirected to the 1st time they log in to the site. You can use this for whatever reason you wish. It was a requested feature. Must contain http info |
____________________________________________________________ _________
I am fully aware that http://.../scripts/login_form_inc.asp is an invalid it was only a guide the full URL is http://10.90.172.20/mediaserver/scripts/login_form_inc.asp
"login_form_inc.asp" is an include file and NEVER intended to be linked to directly or run by itself
I must have missed something out, Initially I followed the Login form on a non protected page instructions which worked when a user login correctly but if a non user or incorrect user details were entered the user was directed to the login_form_inc.asp to re-enter the details. As this happened I decided to use this page.
What I am trying to do ?
I am a network administrator at a school and I have been asked to create a webased application with password protection, After looking at a number of products available this one appeared to suit our needs the best so we opted for it.
Basically the application is split into 15 departments, each department is given a usename and password.
From this when a user logins in they go to a section of the application for which they have permission for.
By adding
<%@ LANGUAGE="VBSCRIPT" %>
<% GROUPACCESS = "4" %>
<!--#INCLUDE FILE="../check_user_inc.asp"-->
To the top of each relavant page for each department it seemed to work.
At present when a user logins in they go to a main page with all fifteen departments listed, they then have to click on a link to the appropriate department, if they click on the wrong one they return to the login box with a warning.
All I was attempting to accomplish was to streamline the application that when a user entered their name they would go directly to their department page and not to the main page with all the departments listed.
|