hi all,

i have image path name in database and i am fetching it this way.
Code:
con.Open();
string img= "select imgPath from Tbl_Image where imgId='1'";
SqlCommand cmd = new SqlCommand(img,con);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
da.Fill(ds);
con.Close();
i got path name in ds.

now my question is how to assign that path...