We have applications that get scanned and the information from that application populates a database. What I'd like to do is be able to recall the .tif image for a particular application. I have no problem finding the file (using FSO):
<%
'test code
myfile = "ZCK9JE0001.tif"
Set FSO = Server.CreateObject("Scripting.FileSystemObject"
If FSO.FileExists(( "E:\TeleformISD\Electrical\" & myfile )) Then
Response.Write "Yes. Its there!"
Else
Response.Write "No!"
End If
%>
FSO has an .OpenTextFile but I'm using an .tif file(grrr).
How can I open that file so a user can actually view the image. Please note the directory is located somewhere else on the server. Not in web directory
TIA
<%
'test code
myfile = "ZCK9JE0001.tif"
Set FSO = Server.CreateObject("Scripting.FileSystemObject"

If FSO.FileExists(( "E:\TeleformISD\Electrical\" & myfile )) Then
Response.Write "Yes. Its there!"
Else
Response.Write "No!"
End If
%>
FSO has an .OpenTextFile but I'm using an .tif file(grrr).
How can I open that file so a user can actually view the image. Please note the directory is located somewhere else on the server. Not in web directory
TIA