首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

求:ashx 输出上载文件 type为application/octet-stream flash能直接播放

2012-09-04 
求:ashx 输出下载文件 type为application/octet-stream flash能直接播放?输出代码C# codecontext.Response

求:ashx 输出下载文件 type为application/octet-stream flash能直接播放?
输出代码

C# code
context.Response.ContentType = "application/octet-stream";                context.Response.AddHeader("Content-Disposition", "attachment;FileName=" + System.Web.HttpUtility.UrlEncode(fileName));                context.Response.BinaryWrite(bytes);


想在html页面直接通过flash的src访问。。但读不了。空白的。

[解决办法]
前台的HTML元素引用这个ashx的地址应该可以的~
[解决办法]
flv
Response.ContentType = "video/x-flv"

如果是MP3之类的
Response.ContentType = "audio / wav";

热点排行