i m getting other column but not getting the image...
asp code.
c# code
System.Data.DataSet ds2 = new System.Data.DataSet();
string cmText = "SELECT * FROM images WHERE TICKER=" + "'" + ticker + "'";
SqlDataAdapter da1 = new SqlDataAdapter(cmText, con);
da1.Fill(ds2);
GridView1.DataSource = ds2;
GridView1.DataBind();
Please suggest where i m going mistake...
ArshadPosted Jul 21, 2010, 9:06 AM
You have not specified the Image source.
Regards
Arshad.