I am new to asp.net, looking for a tutorial that will teach me how to make a web registration form with many textboxes, dropdowns etc and submit this information into the database tables on the user pressing the submit button.
I’ve searched but so far come up with nothing.
If you look at the data access part of asp.net/learn there’s a ton of tutorials specifically surrounding data access through asp.net, although from what you’ve posted I suspect that this is “over-complicated” for what you’re after.
At its simplest what you want to do is have your aspx page, lets call it default.aspx and have the following in it:
Now in your codebehind file (the .aspx.cs file) you’ll want to have an event handler for the Click event of myButton
The example code above, for doing the database work, is very rudimentary and I strongly suggest you read some of the tutorials on asp.net/learn and elsewhere on the net (perhaps even the msdn documentation for SqlCommand, SqlParameter and SqlConnection) to familiarise yourself with what they are and how they work.