Download Problem From Db
Hello,
i am using SQL db 2000 made a function upload song and they store into my db as a binary format i my computer songs are uploading fine and downloading fine too but when i upload this data into my server i can upload the songs but unable to download the songs
for the download i use this code
sql="select from tblsong where songid=32"
set rec=con.execute(sql)
if rec.eof=true then
else
Response.AddHeader "content-disposition", "attachment; filename=" & rec("Song_name")& "." & Rec("song_ext")
'Response.AddHeader "content-disposition", "inline; filename=" & rec("song_name") & "." & Rec("song_ext")
Response.AddHeader "content-length", Rec("song").ActualSize
Response.ContentType = Rec("song_ext")
Response.BinaryWrite Rec("song")
end if
my binary datafield is type is IMAGE
so please tell me wht is the problem
Thanks
Adil:)
|