Database driven website help ASP.Net?

kimberlie

New member
Im am currently making a database driven website using Visual Studio, ASP.Net
But having some difficulties.

My database is made in Oracle SQL, and I need a specific table to be displayed, to enable user input. The user must not be able to see the content already stored within the database for data protection reasons, but must be able to enter their details (in the form of a registration) and submit, so that it saves to the table within Oracle SQL.

I am completely new at using this, and so really struggling. Any help would be great.
 
First create a connection to your database

Second create a Form ( containing Text fields or any other components ) those fields will be the "Insert parameters" of your SQL statement to insert to your database table.

Third add a submit button to Execute the Insert Statement.

The above conceptualy what you should be doing

Have a look at this

http://www.asp.net/general/videos/intro-to-web-forms
 
Back
Top