Front page and Access

A

Amateur

I am using ASP to display Data for my customers on the web.
I have Dataaccess pages based on tables in a database. In those table are of
course the customers informations which each customer should see.
So, if I create User permissions than each customer can see ALL information
in that table.
What do I have to do that every specific customer can only see his specific
information out of the table in the dataaccess page?
Thanks for help
Klaus
 
K

Kevin Spencer

You would cereate a login page that the user logs in with, using an
email/password combination (or whatever you want). The user has an ID that
is stored in the database. You put that ID into a Session variable, and use
it in your query's WHERE clause to filter the data.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
K

Kevin Spencer

I'm talking about custom programming with ASP. Perhaps there is someone here
who knows a workaround using the built-in database tools for FrontPage. I
only know how to write it myself.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
Top