M
Metin
I use this method to submit whole infopath form
public string submitStudentInfo(XmlElement studentInfo)
When i save studentInfo with this code
XmlDocument doc = new XmlDocument();
doc.Load(new XmlNodeReader(studentInfo));
doc.Save(Server.MapPath("info.xml"));
The result is simple xml file not an infopath file. When i save an xml from
infopath it save this form as a Infopath xml file. It contains information
about xsn file as well. I want to save this form like when infopath save.
How can i do this?
public string submitStudentInfo(XmlElement studentInfo)
When i save studentInfo with this code
XmlDocument doc = new XmlDocument();
doc.Load(new XmlNodeReader(studentInfo));
doc.Save(Server.MapPath("info.xml"));
The result is simple xml file not an infopath file. When i save an xml from
infopath it save this form as a Infopath xml file. It contains information
about xsn file as well. I want to save this form like when infopath save.
How can i do this?