Asp.net – Render image from memory
I have an ASP.NET control on a form. Declared as: <asp:imagebutton runat="server" Id="myImage1"/> In the code behind, I get an image from a Redis database. I read the image into memory. Like so: Dim myByteArray() As Byte = myRedisDb.StringGet(myImageName) I…