ಆರ್ಕೈವ್ಸ್

ಶೇರ್ಪಾಯಿಂಟ್ ವೇದಿಕೆ ಲೈಬ್ರರಿ ಸರಣಿಬದ್ಧವಾಗಿ ರಲ್ಲಿ InfoPath XML ಫೈಲ್ ಸಂಪಾದಿಸಿ ಹೇಗೆ 2007

ಕೋಡ್ ತುಣುಕನ್ನು ಕೆಳಗೆ ಸಾಲುಗಳನ್ನು InfoPath ಮದುವೆ ದಾಖಲೆ ನವೀಕರಿಸಲು ಆಗಿದೆ(ಫೈಲ್)

SPWeb _web = SPContext.Current.Web;
SPList _list = _web.Lists[“SampleFormLib”];

MemoryStream myInStream = ಹೊಸ MemoryStream(item.File.OpenBinary());
XmlTextReader ರೀಡರ್ = ಹೊಸ XmlTextReader(myInStream);

XmlDocument ಡಾಕ್ = ಹೊಸ XmlDocument();
doc.Load(ರೀಡರ್);

reader.Close();
myInStream.Close();

XmlNamespaceManager nameSpaceManager = ಹೊಸ XmlNamespaceManager(doc.NameTable);
nameSpaceManager.AddNamespace(“ನನ್ನ”, “http://schemas.microsoft.com/office/infopath/2003/myXSD/2009-06-11T12:44:57“);

doc.DocumentElement.SelectSingleNode(“ನನ್ನ:ಸ್ಥಿತಿ”, nameSpaceManager).ಒಳ ಪಠ್ಯ = “ಉಳಿಸಿದ”;
doc.DocumentElement.SelectSingleNode(“ನನ್ನ:SaveDate”, nameSpaceManager).InnerText = DateTime.Today.ToString();
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
SPFile newFile = _web.Folders[“SampleFormLib”].Files.Add(item.File.Name.ToString(), (encoding.GetBytes(doc.OuterXml)), ನಿಜವಾದ);
item.File.Update();

Make sure you execute item.File.Update() to commit the changes (I got the errors while execute item.Update() and spent couple of hours to find 🙁 )

1 comment to How to Edit InfoPath XML File in Forum Library Programmatically in SharePoint 2007

ಒಂದು ಉತ್ತರಿಸಿ ಬಿಡಿ

ನೀವು ಬಳಸಬಹುದು ಈ HTML ಟ್ಯಾಗ್ಗಳನ್ನು

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>