Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Ms. Perricone #1
adding XML meta tags to data from form to make xml file
I have a form that labs use to submit sample data. The data
needs to be stored as an XML file. I have that working. But the XML
file needs meta data in it, too. This is what i have for code right
now, but it's not working, it's trying to parse the XML.
Can someone suggest a means to fix this?
<CFXML VARIABLE="SampleResultXml">
<cfoutput>
<SAMPLE_RESULTS>
<?xml version="1.0" encoding="UTF-8" ?>
<EN:eDWR xmlns:EN="urn:us:net:exchangenetwork"
xmlns:facid="http://www.epa.gov/xml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:us:net:exchangenetwork
D:\Node\eDWR_schema\EDWR_ZIP\DENVER02\EngEDWR\XML_ Schema\Version_2.0\eDWR_v2.0_0
3292004\EDWR_eDWR_v2.0.xsd">
<Lab_Data_Form_Type>#form.Lab_Data_Form_Type#</Lab_Data_Form_Type>
<Resub_Indic>#form.Resub_Indic#</Resub_Indic>
<Monitoring_Per_Beg>#form.Monitoring_Per_Beg#</Monitoring_Per_Beg>
... after 100 more form fields ...
</SAMPLE_RESULTS>
</cfoutput>
</CFXML>
<CFFILE
ACTION="WRITE"
FILE="C:\CFusionMX7\wwwroot\EDWSS\XMLFiles\#Variab les.varFileName#"
OUTPUT="#ToString(SampleResultXml)#">
Ms. Perricone Guest
-
DOM meta tags
Hi there! I'm writing an extension for DW8 that retrieves the contents of a meta tag from the current XHTML document: <meta... -
Meta Tags Increase file limits
Anyone know how to customize or increase the meta tag file limitation in pub 2003? -- Cman -
Meta Tags???
I made a web page a while back and I remember reading about adding meta tags to the body of page. It was done by opening another small window. Now... -
Adding meta tags
Below is a sample of the script you need to use to make your page recognised by search engines also don't use too many keywords as some search... -
How to write my own meta tags in any new aspx file created in visual studio
Hello, When i create a new aspx page from visual studio i get a page in which default meta tags are displayed. i would like to know which...



Reply With Quote

