devnull wrote:<httpHandlers>
<add verb="*" path="stream.aspx" type="Test.CustomHandler, Test"/>
</httpHandlers>
public class CustomHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.Clear();
context.Response.ContentType = "video/quicktime";
context.Response.TransmitFile(@"c:\test.mov");
context.Response.End();
}
}
doesnt work in IE7, works fine with Firefox/IE6, any idea why its not working in IE7?
Just coming in out of left-field - what happens when you use
context.Response.WriteFile() instead?
Edit: Scrap that, you are better not reading the file into memory first.