Hi all, I wrote the following code to insert data into the table. Although it is successfully building, its adding the data into the table. Which means after the execution of the program, the table doesnt have the inserted data. private void btnSubmit_Click( object sender, RoutedEventArgs e) { if (txtRName.Text != "" && txtUserName.Text != "" && pwbPassword.Password != "" && pwbConfirmPass.Password != "" && ComCountry.Text != "" && ComSecurity.Text != "" && txtAnswer.Text != "" ) { UsersDBDataContext
Read More...