2011-11-27 68 views
0

我有一個非常簡單的通用處理程序,它向客戶端發送簡單警報。我將Content-Type標題設置爲application/x-javascript,但我從服務器獲得的是text/html內容類型。無法在我的通用處理程序中設置「Content-Type」

這裏是我的通用處理程序的代碼:

public void ProcessRequest(HttpContext context) 
{ 
    context.Response.Clear(); 
    context.Response.AddHeader("Content-Type", "application/x-javascript"); 
    context.Response.ContentType = "application/x-javascript"; 
    context.Response.Write("alert('javascript is here');"); 
    context.Response.Flush(); 
    context.Response.End(); 
} 

現在,當我把這個處理程序,通過http://domain/path/handler.ashx,我所得到的Firebug是:

enter image description here

任何想法是什麼錯誤?

PS:我想創建一個腳本傳送服務,並且該腳本是即時創作的。這就是爲什麼我使用動態通用處理程序來處理此腳本的原因。

回答

相關問題