Custom Meta tags

C

Caeanis

I would like to insert the following two meta tags "<?xml version="1.0"
encoding="UTF-8"?><!DOCTYPE DMConnect SYSTEM "dmconnect.dtd">"before the base
element in my xml forms generated by infopath instead of the 3 "<?xml
version="1.0" encoding="UTF-8"?><?mso-infoPathSolution
XXXXXXXX?><?mso-application progid="InfoPath.Document"?>"that usually appear
in it. Is there any way to do this?
 
S

Submit with Custom Metadata Form

var content = XDocument.DOM.xml; // Read the content of existing XML file.
content.replace("<?xml version=\"1.0\" encoding...", "<Your own metadata>");

// Then, save content to an XML file.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top