Please help!!! i just started with ASP programming and have no clue what i am doing wrong. I have a text file located on our server's C: drive that i am attempting to open, read all text, and output text onto page. BUT when i use the below code, nothing is being displayed on the page. Please help.
Thanks in advance.....
Code:
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.OpenTextFile(Server.MapPath("C:\Program Files\SunGard Insurance Systems\VIP\VIPONLINE\PresASP\Specs\LPWL05.txt"), 1)
Response.Write(f.ReadAll)
f.Close
Set f=Nothing
Set fs=Nothing
%>
Thanks in advance.....