i have image value in database of type "image".
in view saved under type byte[]
i want to show it as image in my asp.net mvc view. the best its just as image.
value if image is saved under Model.ImageData.
i tried to solve it like this:
<img height="450px" width="330px" src="<%= historyItem.ImageData %>" alt="image" />
but it doesnt work. how to do that?