குறியீடு துணுக்கை கீழே வரிகளை InfoPath XML சாதனை புதுப்பிக்க வேண்டும்(கோப்பு)
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 🙁 )
Have you considered adding some differing opinions to your article? I think it might enhance viewers understanding.