目前我GenericHandler(.ashx)
用于在图像控件中显示图像。
见下面的代码:
[1] .ASPX
<asp:Image ID="Image1" runat="server" Width="350px" Height="415px" />
[2] .cs(codebehind)
Image1.ImageUrl = string.Format("GridviewImage.ashx?ItemID={0}", itemID);
现在我需要得到Image1
一个字节数组(byte[]
)的图像。
可能吗?