Jump to content

asp log in pages


greg2cool

Recommended Posts

Tip: if asking for assistance, it's probably best to not come in and question everyone else's knowledge about the topic that you clearly don't know anything about yourself.To manage registering and logging in, you need a database or other source to store the login information, the registration page needs to connect to the database, check if someone is trying to sign up with a duplicate account, validate the information they gave, and add them to the database. The login page needs to check the credentials that they entered against the database, and either give the user a cookie or store their authentication in the session. Every other page needs to check the same cookie or session variable and validate that information against the database to verify that they are who they say they are.This is the same for all web applications. The syntax varies depending on if you are using ASP, ASP.NET, some other scripting language like PHP, and also depends on which database you are using.Now with your newfound knowledge, you can go out and code. Hopefully you know how to do all of this and you don't have any more questions, because with an attitude like that people probably won't care about helping you.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...