<% 'Set the content type to the specific type that you are sending. Response.ContentType = "application/pdf" Const adTypeBinary = 1 Dim strFilePath strFilePath = "C:\Inetpub\guides\EQE1_1.pdf" 'This is the path to the file on disk. Set objStream = Server.CreateObject("ADODB.Stream") objStream.Open objStream.Type = adTypeBinary objStream.LoadFromFile strFilePath Response.BinaryWrite objStream.Read objStream.Close Set objStream = Nothing %>