I am facing Problem while binding the data to the gridview
SqlCommand cmd=new SqlCommand("select*from emp",conn);
SqlDataAdapter da=new SqlDataAdapter(cmd);
Dataset ds=new Dataset();
da.Fill(ds,"empnew");
Gridemp.Datasource=ds.Tables["empnew"];
Gridemp.Databind();