private void btnReturn_Click(object sender, EventArgs e)
        {
            Icerik ic = new Icerik();

            ic.Show();
            this.Hide();
        }
 private void btnGiris_Click(object sender, EventArgs e)
 {
     conn = new SqlConnection(@"Data Source=TOSHIBA\KARMAWAYINFO;Initial Catalog=KarmaWayInformation;User ID=oguz;Password=123456123fb.");
     conn.Open();
     cmd = new SqlCommand("select*from BusinessManager where UserID='" + txtBoxKulAd.Text + "' and Password='******'", conn);
     dr  = cmd.ExecuteReader();
     if (dr.Read())
     {
         Icerik ic = new Icerik();
         ic.Show();
         MessageBox.Show("Başarılı Bir Şekilde Bağlantı Oluşturdunuz");
         this.Hide();
     }
     else
     {
         MessageBox.Show("Kullanıcı Adı veya Şifre Yanlış Girildi. Kontrol Edip Tekrar Deneyiniz!");
     }
     conn.Close();
 }