Ive only been playing with fso for the last week so its all new to me . I managed to get it to work using the following code.
<%
Response.ContentType = "application/pdf"
strFilePath = "c:/folder/file"
Dim oStream
Set oStream = Server.CreateObject("ADODB.Stream")
oStream.Open
oStream.Type = 1 'adTypeBinary
oStream.LoadFromFile strFilePath
varPdf = oStream.Read
Response.BinaryWrite( varPdf )
oStream.Close
Set oStream = Nothing
%>
Know I just need to carry the link name into the fso so it knows which file to display that way I wont have to create a fso page for every indervidual pdf.
Thanks for your help.