Ciao a tutti, so che è una cavolata ma non sto riuscendo a vedere l'errore.
Non mi fà l'INSERT nel db

codice:
private void btnApri_Click(object sender, EventArgs e)
        {

            SqlConnection conn = new SqlConnection("Server=localhost;Database=Rubrica;Trusted_Connection=True;");

            conn.Open();
            string nome = this.txtNome.Text;
            string cognome = this.txtCognome.Text;
            string telefono = this.txtTelefono.Text;


            string stringaSQL = "INSERT INTO Persona (Nome,Cognome,Telefono) VALUES('nome','cognome','telefono')";

            SqlCommand command = new SqlCommand(stringaSQL, conn);
            command.ExecuteNonQuery();
             
            command.Dispose();
            conn.Close();


            
        }
mi date una mano? Grazie!