I have a byte array of images on the server side. I have an img tag on my browse page.
I am wondering how to use a byte array as the image source of the img tag.
I am extracting an array of bytes in my model, passing it back to my controller method, and then I would like to somehow store it in ViewData. Then, in the $ (document) .ready jQuery function on the View page, this array of bytes is somehow set as the source for my IMG tag.
Is it possible?
source share