Sa ibaba ang mga linya ng code snippet ay i-update ang record ng infopath xml(file)
SPList _list = _web.Lists[“SampleFormLib”];
MemoryStream myInStream = bagong MemoryStream(item.File.OpenBinary());
XmlTextReader reader = bagong XmlTextReader(myInStream);
XmlDocument doc = bagong XmlDocument();
doc.Load(mambabasa);
reader.Close();
myInStream.Close();
XmlNamespaceManager nameSpaceManager = bagong XmlNamespaceManager(doc.NameTable);
nameSpaceManager.AddNamespace(“ko”, “http://schemas.microsoft.com/office/infopath/2003/myXSD/2009-06-11T12:44:57“);
doc.DocumentElement.SelectSingleNode(“ko:Katayuan”, nameSpaceManager).Inner Text = “Nai-save na”;
doc.DocumentElement.SelectSingleNode(“ko:SaveDate”, nameSpaceManager).InnerText = DateTime.Today.ToString();
System.Text.ASCIIEncoding pag-encode = bagong System.Text.ASCIIEncoding();
SPFile newFile = _web.Folders[“SampleFormLib”].Files.Add(item.File.Name.ToString(), (encoding.GetBytes(doc.OuterXml)), totoo);
item.File.Update();
Tiyaking magsagawa ng item.File.Update() na gumawa ng mga pagbabago (Nakakuha ako ng error habang execute item.Update() and spent couple of hours to find 🙁 )
Isinaalang-alang mo ang pagdaragdag ng ilang mga magkakaibang opinyon sa iyong artikulo? Sa tingin ko maaaring mapahusay ang pag-unawa sa mga manonood.