I highly recommend not getting into the routine of building SQL strings by concatenating strings. You leave yourself wide open for SQL injection, especially if it is a website. You must create your commands with place-holder parameters in the line, and then add the parameters to the command object. Add the parameters in the same sequence as in the command ... for example
cmdInsert.CommandText = "INSERT INTO Customer (FirstName, LastName) VALUES ( @parmFirstName, @parmLastName )"
cmdInsert.Parameters.AddWithValue( "@parmFirstName", txtFirstName.Text );
cmdInsert.Parameters.AddWithValue( "@parmLastName", txtLastName.Text );
, -, ( 1) . "". , [].