Friday, January 29, 2016

Get an image back from a bytes array at an .ashx in C#!

context.Response.ContentType = "image/png";
context.Response.BinaryWrite(myBytes);

No comments:

Post a Comment