//Data Source = BilgisayarAdi; Initial Catalog = veritabani_adi; //using System.Data.SqlClient; string byol = "Data Source=USER-PC; Initial Catalog=skeser; Integrated Security=true"; SqlConnection baglanti = new SqlConnection(byol); baglanti.Open(); if (baglanti.State == ConnectionState.Open) { Label1.Text = "Veritabanı Bağlantısı Açık"; } else { Label1.Text = "Veritabanına Bağlanamadı !!"; } string ad, soyad,kayitSQL; ad = TextBox1.Text; soyad = TextBox2.Text; kayitSQL = "insert into adSoyad (ad,soyad) values ('"+ad+"','"+soyad+"')"; SqlCommand kayitekle = new SqlCommand(kayitSQL,baglanti); kayitekle.ExecuteNonQuery();