i am using Visual studio 2010 with .Net 3.5 framework
my code work fine in my windows 8, IE 9
however it doesnt work in windows xp , IE7, i have no idea what is exactly happen
Byte[] byImg = ((byte[])dr["logo"]);
var vBase64String = Convert.ToBase64String(byImg);
logo.ImageUrl = string.Format("data:image/gif;base64,{0}", vBase64String);
is there any support issue?