Link to home
Start Free TrialLog in
Avatar of enochstek
enochstek

asked on

Frontpage multiple users on access database

I have a table thats going to include company name, unit #, history and possibly some other fields. I have it connected in frontpage 2002. How could I go about only allowing certain people to view certain information. Example, say I have a company called Company1. The table includes all different companies information. How can I allow company1 to only see results that pertain to Company1 in the table?
ASKER CERTIFIED SOLUTION
Avatar of rcmb
rcmb

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of webwoman
webwoman

Give them a login page. They enter a username/password you supply, it brings up only their info. Set a cookie on their machine, and check for the cookie on each page. No cookie, no access - you just redirect them to the login page. I do this for some things, it works fine.

If you need it to be VERY secure, you could do the directory/account route that rcmb supplies. However, if you don't have total access to the server to create accounts, that's not possible.