home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>AdvFile Component</title>
- </head>
- <body>
- <%
- dim File
- set File = Server.CreateObject("AdvFile.File")
- File.Attributes = Request.Form("Attributes")
- if (Request.Form("NewLine") = "on") then
- File.AddNewLine = true
- else
- File.AddNewLine = false
- end if
- File.Write Request.Form("Source"), Request.Form("Data")
- if (File.IsError = 1) then
- Response.Write "Error: "&File.ErrorReason & "<br>"
- else
- Response.Write "Successfully write" & "<br>"
- end if
- set File = Nothing
- %>
- <a href="dsp_write.htm">Back</a>
- </body>
- </html>
-