|
 |
asp_web_howto thread: Intranet based permissions...
Message #1 by "Paul David Jacobs" <jacobspd@g...> on Fri, 7 Feb 2003 05:53:50 -0600
|
|
Hi All,
I have an interesting problem I need to resolve.
I need to build a permissions facility into my intranet. Current the
user logs on to the Intranet site which then displays their own personal
data. However some pages I want accessible to authorized people and
some are denied. My idea is to use my Access Dbase that contains the
users and add columns with a tick (Yes/No), so as "Invoice", "Check" and
other areas I want to restrict access to the administrators only.
I don't want to restrict access by changing permissions in windows, or
using IP address because I want anyone to log on to their data on any
computer on the network.
Any ideas on how I can achieve this...?
Many thanks for your assistance and time.
Paul D. Jacobs
Web Applications Developer and Information Systems Manager
jacobspd@g...
_____
Message #2 by Sam Clohesy <sam@e...> on Fri, 7 Feb 2003 12:06:13 -0000
|
|
Hi Paul- do you need to do NT style security (users/groups) or just users?
Sam Clohesy
Project Manager
T: 0208 772 3958
E: samc@e...
W: http://www.etypemedia.co.uk
W: http://www.siteactive.net
-----Original Message-----
From: Paul David Jacobs [mailto:jacobspd@g...]
Sent: 07 February 2003 11:54
To: ASP Web HowTo
Subject: [asp_web_howto] Intranet based permissions...
Hi All,
I have an interesting problem I need to resolve.
I need to build a permissions facility into my intranet. Current the
user logs on to the Intranet site which then displays their own personal
data. However some pages I want accessible to authorized people and
some are denied. My idea is to use my Access Dbase that contains the
users and add columns with a tick (Yes/No), so as "Invoice", "Check" and
other areas I want to restrict access to the administrators only.
I don't want to restrict access by changing permissions in windows, or
using IP address because I want anyone to log on to their data on any
computer on the network.
Any ideas on how I can achieve this...?
Many thanks for your assistance and time.
Paul D. Jacobs
Web Applications Developer and Information Systems Manager
jacobspd@g...
_____
Message #3 by "Paul David Jacobs" <jacobspd@g...> on Fri, 7 Feb 2003 06:11:52 -0600
|
|
Just users...
Paul D. Jacobs
Web Applications Developer and Information Systems Manager
jacobspd@g...
_____
Servicios Interactivos Internacionales S.A. de C.V.
Via Ceti #56, Fracc Luis Enrique Erro,
Planetario Lindavista,
C.P 07730
M=E9xico D.F.
-----Original Message-----
From: Sam Clohesy [mailto:sam@e...]
Sent: Friday, February 07, 2003 6:06 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Intranet based permissions...
Hi Paul- do you need to do NT style security (users/groups) or just
users?
Sam Clohesy
Project Manager
T: 0208 772 3958
E: samc@e...
W: http://www.etypemedia.co.uk
W: http://www.siteactive.net
-----Original Message-----
From: Paul David Jacobs [mailto:jacobspd@g...]
Sent: 07 February 2003 11:54
To: ASP Web HowTo
Subject: [asp_web_howto] Intranet based permissions...
Hi All,
I have an interesting problem I need to resolve.
I need to build a permissions facility into my intranet. Current the
user logs on to the Intranet site which then displays their own personal
data. However some pages I want accessible to authorized people and
some are denied. My idea is to use my Access Dbase that contains the
users and add columns with a tick (Yes/No), so as "Invoice", "Check" and
other areas I want to restrict access to the administrators only.
I don't want to restrict access by changing permissions in windows, or
using IP address because I want anyone to log on to their data on any
computer on the network.
Any ideas on how I can achieve this...?
Many thanks for your assistance and time.
Paul D. Jacobs
Web Applications Developer and Information Systems Manager
jacobspd@g...
_____
Message #4 by Sam Clohesy <sam@e...> on Fri, 7 Feb 2003 12:28:33 -0000
|
|
Can you not then do
If objrs("Invoice")=3D"0" OR objrs("Check")=3D"0" Then
Response.Redirect("login.asp?message=3Dnopermission")
End if
Where objrs is your recordset/dbase fields and if appropriate boxes are
not
checked users are redirected to login page
You could always set access levels for groups as users as well:
If objrs("Level") > "1" Then
Response.Redirect("login.asp?message=3Dnopermission")
End if
Hope this is useful
Sam Clohesy
Project Manager
T: 0208 772 3958
E: samc@e...
W: http://www.etypemedia.co.uk
W: http://www.siteactive.net
-----Original Message-----
From: Paul David Jacobs [mailto:jacobspd@g...]
Sent: 07 February 2003 12:12
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Intranet based permissions...
Just users...
Paul D. Jacobs
Web Applications Developer and Information Systems Manager
jacobspd@g...
_____
Servicios Interactivos Internacionales S.A. de C.V.
Via Ceti #56, Fracc Luis Enrique Erro,
Planetario Lindavista,
C.P 07730
M=E9xico D.F.
-----Original Message-----
From: Sam Clohesy [mailto:sam@e...]
Sent: Friday, February 07, 2003 6:06 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Intranet based permissions...
Hi Paul- do you need to do NT style security (users/groups) or just
users?
Sam Clohesy
Project Manager
T: 0208 772 3958
E: samc@e...
W: http://www.etypemedia.co.uk
W: http://www.siteactive.net
-----Original Message-----
From: Paul David Jacobs [mailto:jacobspd@g...]
Sent: 07 February 2003 11:54
To: ASP Web HowTo
Subject: [asp_web_howto] Intranet based permissions...
Hi All,
I have an interesting problem I need to resolve.
I need to build a permissions facility into my intranet. Current the
user logs on to the Intranet site which then displays their own
personal
data. However some pages I want accessible to authorized people and
some are denied. My idea is to use my Access Dbase that contains the
users and add columns with a tick (Yes/No), so as "Invoice", "Check"
and
other areas I want to restrict access to the administrators only.
I don't want to restrict access by changing permissions in windows, or
using IP address because I want anyone to log on to their data on any
computer on the network.
Any ideas on how I can achieve this...?
Many thanks for your assistance and time.
Paul D. Jacobs
Web Applications Developer and Information Systems Manager
jacobspd@g...
_____
Message #5 by "Paul David Jacobs" <jacobspd@g...> on Fri, 7 Feb 2003 06:53:19 -0600
|
|
Sam,
You method worked a treat... thanks ever so much
Paul D. Jacobs
Web Applications Developer and Information Systems Manager
jacobspd@g...
_____
Servicios Interactivos Internacionales S.A. de C.V.
Via Ceti #56, Fracc Luis Enrique Erro,
Planetario Lindavista,
C.P 07730
M=E9xico D.F.
|
|
 |