I have created a form that includes a registration and login form in Visual Studio using the default Web Form that is already provided. So the code for someone to register and login is already provided and their inputted details are already sent to a default membership database.
What I want is once a user is logged in, they can access a members-only webpage where they enter additional details and those details can be inserted into a database I created myself. However, what I also want, is once the person enters their details into my database, they can later go back and change it.
What I would like to know is how can I get that specific user to access only their records?
I understand the use of FormView and DetailView, but they seem to display the entire database table, while I only want that specific view. I thought of trying to display the recently added records, but this causes problems because when someone else logs back into the website again and view their details, it will probably end up showing another record instead.