home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>AdvFile Component</title>
- </head>
- <body>
- <%
- dim File
- set File = Server.CreateObject("AdvFile.File")
- set Result = File.Read(Request.Form("Source"))
- if (File.IsError = 1) then
- Response.Write File.ErrorReason & "<br>"
- else
- Response.Write "Successfully read" & "<br>" & Result.FileContent & "<br>"
- end if
- set File = Nothing
- set Result = Nothing
- %>
- <a href="dsp_read.htm">Back</a>
- </body>
- </html>
-