Save User Input in a DB

Shady

New Member
Let's say I have a registration page where the user creates a new account. I use the standard ASP.NET 2.0 Registration control. I want to create something like profile when the user is logged in so he can fill it in.

I want to save this info in a custom DB.
 

Logan

New Member
You can't do this using the Registration Control. That ties in to the site's administration. Sad I know :(
You need to create custom forms...

I have posted a number of entries on doing this in my blog using Visual Basic. Almost every post in the .NET category so far deals with user login and registration and saving user details to a database.
http://loganyoung.wordpress.com is my blog. Hope it helps, post comments there if anything confuses you.
 
Hi,

Add a Button to Save User Data and Exit a Run
Allow the user to exit a session by clicking on a "Save" button that will save their input and exit the session. This is used when saving data after every question is impractical. Explains how to use this approach for both Applet and Servlet Runtimes. And visit this site:.exsys.com/HowTo.html
 
Top