2012-03-29 88 views
1

我目前正在進行一個學校項目,我不確定返回的內容以及如何使數據可用。下面是代碼:使用Handler.ashx獲取圖像

Default.aspx的

function GetImage(id) { 
     //step k. - code here 
     xmlHttpObj = CreateXmlHttpRequestObject(); 
     if (xmlHttpObj) { 
      xmlHttpObj.open("GET", "Handler.ashx?id=" + id, true); 
      xmlHttpObj.send(null); 
      var image = document.getElementById("ProductImage"); 
      //the response contains an array of 5419 index 
     } 
    } 

Handler.ashx

public void ProcessRequest (HttpContext context) 
    { 
     int id; 
     if (context.Request.QueryString["id"] != null) 
     { 
      id = Convert.ToInt32(context.Request.QueryString["id"]); 
      context.Response.ContentType = "image/jpeg"; 
      byte[] bufferImg = GetImage(id); 
      context.Response.OutputStream.Write(bufferImg, 0, bufferImg.Length); 
     } 
    } 

的getImage(int id)返回 「(字節[])cmd.ExecuteScalar();」,即時通訊不確定我應該如何處理正在傳回的信息。我假設它是圖像本身?任何幫助表示讚賞。謝謝!

回答

3

爲什麼不嘗試

function GetImage(id) { 

      document.getElementById("ProductImage").src="Handler.ashx?id=" + id; 

    } 
+0

謝謝!像魅力一樣工作。我之所以需要使用xmlHttpObject,是因爲我從來沒有這樣做過。它很好地刷新閃光燈,時刻記住總有另一種方式。 – 2012-03-29 17:49:20