home *** CD-ROM | disk | FTP | other *** search
ColdFusion Markup Language | 2001-03-14 | 570 b | 22 lines |
- <html>
- <head>
- <title>AdvFile Component</title>
- </head>
- <body>
- <cfobject class="AdvFile.File" action="CREATE" name="AdvFile">
- <cfif ParameterExists(Form.NewLine)>
- <cfset AdvFile.AddNewLine = true>
- <cfelse>
- <cfset AdvFile.AddNewLine = false>
- </cfif>
- <cfset AdvFile.Attributes = #Form.Attributes#>
- <cfset temp = AdvFile.Append(#Form.Source#, #Form.Data#)>
- <cfif #AdvFile.IsError# Eq 1>
- <cfoutput>#AdvFile.ErrorReason#</cfoutput> <br>
- <cfelse>
- <cfoutput>Successfully append</cfoutput> <br>
- </cfif>
- <a href="dsp_append.htm">Back</a>
- </body>
- </html>
-