Hur till Redigera InfoPath XML-filer i forum Bibliotek programmatiskt i SharePoint 2007

Nedanstående rader kodsträng är att uppdatera InfoPath xml rekord(fil)

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

Memory myInStream = new Memory(item.File.OpenBinary());
XmlTextReader läsare = ny XmlTextReader(myInStream);

XMLDocument doc = new XMLDocument();
doc.Load(läsaren);

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

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

doc.DocumentElement.SelectSingleNode(“min:Status”, nameSpaceManager).InnerText = “Sparade”;
doc.DocumentElement.SelectSingleNode(“min: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)), sanna);
item.File.Update();

Se till att du kör item.File.Update() att begå de förändringar (Jag fick fel när verkställa item.Update() och tillbringade några timmar att hitta 🙁 )

1 kommentar till hur till Redigera InfoPath XML-fil i Forum bibliotek programmatiskt i SharePoint 2007

Lämna ett svar

Du kan använda dessa HTML-taggar

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