මචන් user registration එකට table එකක් හදල තියෙන්නේ.... ඒක fill කලාම database එක update වෙන්න ඕන
Something like signup right.
Easiest way is create a stored procedure in your SQL database.
Ex:-
CREATE PROCEDURE WhatEverName @fname VARCHAR (15),@lname VARCHAR (30),@address VARCHAR (80),@telenum CHAR (14),@email VARCHAR (30),@pass VARCHAR (25)
AS
BEGIN
WhatEverName = UserRegistration or your preference
Then in your registration button click or whatever function you have,
Ex:-
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["YourConnectionStringName"].ConnectionString);
SqlCommand com = new SqlCommand();
com.CommandText = "YourProcedureName";
com.CommandType = CommandType.StoredProcedure;
com.Connection = con;
SqlParameter fname = new SqlParameter("@fname", SqlDbType.VarChar, 15);
SqlParameter lname = new SqlParameter("@lname", SqlDbType.VarChar, 30);
//Include every table fields like that
fname.Direction = ParameterDirection.Input;
lname.Direction = ParameterDirection.Input;
//Samehere ... Continue like this for your entire table
fname.Value = txtfirstname.Text;
lname.Value = txtlastname.Text;
//Samehere ... Continue like this for your entire table
com.Parameters.Add(fname);
com.Parameters.Add(lname);
//Samehere ... Continue like this for your entire table
con.Open();
SqlDataReader dr = com.ExecuteReader();
//Then you can close connection
Hope this will help you ... or to get an idea
For your webconfig confusion = add your connection string under the connection string TAGs in your webconfig

.