我已經從Web服務加載到我的asp.net網站的字節數組圖像。 只要執行Web服務,我需要在網頁上顯示它。如何動態顯示asp.net頁面上的字節圖像?
我一直在使用通用處理器試過,但我不能這樣做,因爲有沒有辦法通過字節[]圖像到通用處理器
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;
}
}
請張貼您的代碼。 – Oded 2012-03-23 11:36:37
@oded:ok done :) – 2012-03-23 11:41:08
圖像數據來自哪裏? 「通用處理程序」代碼在哪裏?你究竟想在點擊事件處理程序中做什麼? – Oded 2012-03-23 11:41:44