you should bind data to the data grid view.
private void Btn_View_Course_Click(object sender, EventArgs e)
{
sql = "select Date,Session,Course from Tb_SCh_TIme_Table where Faculty_Code= ' " + Cb_Faculty_Code.Text + "'order by Date,session ";
DataTable dt = new DataTable();
SqlDataAdapter da = new SqlDataAdapter(sql, con);
SqlCommandBuilder cmd = new SqlCommandBuilder(da);
da.Fill(dt);
dataGridView1.DataSource = dt;
dataGridView1.DataBind();
}
Hope this will help u on ur problem.