I have a byte array and trying to display image from that.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.W
Another way to do it is to convert your byte array into a base 64 string and assign that to the ImageUrl property of rImage, like so:
rImage.ImageUrl = "data:image;base64," + Convert.ToBase64String(arr);
You don't need the intermediate MemoryStream or a separate page...if the byte array is in an image format the browser supports, it will display. Good luck.