currently I'm using GenericHandler(.ashx)
for displaying an image in image control.
See below code:
[1] .ASPX
<asp:Image ID="Image1" runat="server" Width="350px" Height="415px" />
[2] .cs(codebehind)
Image1.ImageUrl = string.Format("GridviewImage.ashx?ItemID={0}", itemID);
Now I need to get image of Image1
as a byte array (byte[]
).
Is it possible?
If you have several images being streamed to the page, set the IsReusable to true. Use a DataReader for streaming the image back, not a DataSet like the other link.