Well...in the case of logins/passwords, it really depends on what you're trying to accomplish or do.
The simple explanation (with no code) is this:
Set up Access table with login, password, and redirect URL.
Set up form for user to input login/password.
Check to see if Login/password inputted match any in the Access table.
If they do, retrieve the URL and redirect them (Response.Redirect) to the appropriate section.
|