I am trying to display an asp.net Image using a Base64 String. It works in Explorer but not in Chrome.
Here is the code:
string base64String = Convert.ToBase64String(bytes, 0, bytes.Length);
Image1.ImageUrl = "data:image/jpeg;base64," + base64String;