SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
da.Fill(ds);
con.Open();
cmd.ExecuteNonQuery();
Session["dispal"] = ds.Tables[0].Rows[0]["image"].ToString();
div.style["Foreground-image"]=ds.Tables[0].Rows[0]["image"].ToString(); is Possible
Nilesh ShahPosted Apr 26, 2017, 1:54 PM
Ayan RoyPosted Apr 25, 2017, 3:16 AM