hi all,
i have image path name in database and i am fetching it this way.
i got path name in ds.
now my question is how to assign that path to my image.
//imgCurrent.Imag eUrl
Thanks you,
krunalkakadia
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();
now my question is how to assign that path to my image.
//imgCurrent.Imag eUrl
Thanks you,
krunalkakadia
Comment