Front page and Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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.
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top