Hi,
I want to output some datat in a text file by using cfcontet.
My code is as following:
<cfset header = "name,ID">
<cfset value = "lws,1">
<cfcontent type="text/plain">
<cfoutput>
#header#
#value#
</cfoutput>
When I view the page I found that the data presented with one line rather than two line.(e.g : name,ID lws,1)
Can anyone tell me how to make the output of the above code into separate line?
Thx
I want to output some datat in a text file by using cfcontet.
My code is as following:
<cfset header = "name,ID">
<cfset value = "lws,1">
<cfcontent type="text/plain">
<cfoutput>
#header#
#value#
</cfoutput>
When I view the page I found that the data presented with one line rather than two line.(e.g : name,ID lws,1)
Can anyone tell me how to make the output of the above code into separate line?
Thx