I have a byte array of an image on the server side. I have an img tag on my View page.
I'm wondering how to be able to use the byte array as the image source of the img tag.
I'm retrieving the byte array in my model, passing it back to my controller method and then I'd like to store it in ViewData somehow. Then in the $(document).ready jQuery function of the View page somehow set that byte array as the source for my IMG tag.
Is this possible?