ASP.Net应用程序检索的Flash内容不显示在IE 9上

ASP.Net应用程序检索的Flash内容不显示在IE 9上,asp.net,flash,Asp.net,Flash,我有一个ASP.Net应用程序,它有一个ASHX处理程序,用于返回应用程序/x-shockwave-flash的内容类型以满足特定请求 当我尝试在本地服务器上测试应用程序时,IE没有显示任何内容,但当我使用Chrome进行测试时,它工作得非常好 本地INTERNET区域的安全设置是默认设置,高级设置也是默认设置 我有Adobe Flash Player 11 ActiveX 这是我的代码: HttpResponse response = context.Response; response.C

我有一个ASP.Net应用程序,它有一个ASHX处理程序,用于返回应用程序/x-shockwave-flash的内容类型以满足特定请求

当我尝试在本地服务器上测试应用程序时,IE没有显示任何内容,但当我使用Chrome进行测试时,它工作得非常好

本地INTERNET区域的安全设置是默认设置,高级设置也是默认设置

我有Adobe Flash Player 11 ActiveX

这是我的代码:

HttpResponse response = context.Response;

response.Clear(); 

context.Response.ContentType = "application/x-shockwave-flash";

byte[] buffer = BlobStorageService.DownloadByteArray("MyContainer","8_L001_1.swf");

System.IO.MemoryStream ms = new System.IO.MemoryStream(buffer);
ms.WriteTo(response.OutputStream);

ms.Close();
response.End(); 
有什么问题吗