簡単に!私は、これは非常にあなたを助けることになると思い
'Set the content type to the specific type that you are sending.
Response.ContentType = "video/mp4"
Const adTypeBinary = 1
Dim strFilePath
strFilePath = server.mappath("stream.mp4")
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = adTypeBinary
objStream.LoadFromFile strFilePath
Response.BinaryWrite objStream.Read
objStream.Close
Set objStream = Nothing
:あなたはClassic ASPでADODB.Stream(あまりにもASP.Netで動作します)
ASPでこれを書くを使用することができますhttp://msdn.microsoft.com/en-us/library/ms525208(v=vs.90).aspx
ここを見て。