The ստորեւ տողեր կոդը պատառներ է թարմացում infopath որոնում գրառումը(ֆայլ)
SPList _list Դուք _web.Lists[“SampleFormLib”];
MemoryStream myInStream = new MemoryStream(item.File.OpenBinary());
XmlTextReader ընթերցողը = new XmlTextReader(myInStream);
XmlDocument վավեր = new XmlDocument();
doc.Load(ընթերցող);
reader.Close();
myInStream.Close();
XmlNamespaceManager nameSpaceManager = new XmlNamespaceManager(doc.NameTable);
nameSpaceManager.AddNamespace(“իմ”, “http://schemas.microsoft.com/office/infopath/2003/myXSD/2009-06-11T12:44:57“);
doc.DocumentElement.SelectSingleNode(“իմ:Ստատուս”, nameSpaceManager).Ներքին Text = “Պահված”;
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();
Համոզվեք, որ Դուք կատարել item.File.Update() կատարել փոփոխություններ (Ես ստացել եմ այն սխալները, իսկ մահապատժի 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.