Hi, someone please help me modify this code so it work with aspx. Thank you very much. Here is the code:<BR><BR> ' opening connection<BR> rs.Open "select [File_Path],[Content_Type] from Songs where ID = " & ID, connStr, 2, 4<BR><BR> 'Create a stream object <BR> Dim objStream <BR> Set objStream = Server.CreateObject("ADODB.Stream") <BR> <BR> 'Open a Scorch file <BR> objStream.Type = adTypeBinary <BR> objStream.Open <BR> objStream.LoadFromFile= Server.MapPath rs "file_Path")<BR><BR> <BR> 'Output the contents of the stream object <BR> Response.ContentType = rs("Content_Type")<BR> Response.BinaryWrite objStream.Read <BR> <BR> 'Clean up.... <BR> objStream.Close <BR> Set objStream = NothingYou should read some tutorials. there all over the place.. Dont ask people to code for you. Well I will... but it will cost ya =].Hi Foobar, first thank you for reply. I did try to code it myself, but I can't make it to work so I went around and find some tutorial about it but I still can't solve the problem so that why I went in here and ask. If you know a place where I can find some tutorials about how to solve this problem please let me know. Anyway, thank you very much for your time.<BR><BR>Vo