here is my code,
This code is not in correct form, this code display record, but only 1,
why this code is not displaying my all existing recods
//connectionstring
SqlCommand cmd = new SqlCommand("SELECT COUNT(*) column_name FROM table_name", cnn);
{
cnn.Open();
SqlDataReader rdr = cmd.ExecuteReader();
int count = 0;
while (rdr.Read())
{
count++;
}
label1.Text = "(" + count.ToString() + ") " + "records";
cnn.Close();
}