我已经将一个字节数组图像从Web服务加载到我的asp.net网站。 我需要在执行Web服务后立即在网页上显示它。
我尝试过使用泛型处理程序,但由于没有办法将byte []图像传递给通用处理程序,所以我无法做到这一点
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);
// userImg is the byte image i need to display
}
catch(Exception exc)
{
// vLabel.Text = exc.Message;
}
}