i'm trying to load image in image box in form but it not loading code as follows
SqlConnection con = new SqlConnection(strcon);
string getdata = "select * from image where ID='" + Request.QueryString["ID"] + "'";
SqlDataAdapter da = new SqlDataAdapter(getdata, con);
DataSet ds = new DataSet();
da.Fill(ds, "temp_view");
if (ds.Tables["temp_view"].Rows.Count > 0)
{
&n ...
Go to the complete details ...