I uploaded a byte array image from a web service to my asp.net site. I need to display it on a web page right after the web service runs.
I tried using a common handler, but I could not do this, because there was no way to pass the image of byte [] to a common handler
void Button2_Click1(object sender, EventArgs e) { this.verifyTemplates(); byte[] userImg; try { matchTemp.templateService hs = new matchTemp.templateService(); bool s1 = hs.matchTemplates(template, out userID, out userName, out userImg);
source share