ఆర్కైవ్స్

SharePoint లో ఫోరం లైబ్రరీ Programmatically లో InfoPath XML ఫైలు మార్చు ఎలా 2007

కోడ్ స్నిప్పెట్ క్రింద పంక్తులు infopath xml రికార్డు అప్డేట్ ఉంది(ఫైలు)

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(“నా:సేవ్”, nameSpaceManager).InnerText = DateTime.Today.ToString();
ఎన్కోడింగ్ System.Text.ASCIIEncoding = కొత్త 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 🙁 )

1 SharePoint లో ఫోరం లైబ్రరీ Programmatically లో InfoPath XML ఫైలు మార్చు ఎలా వ్యాఖ్యానిస్తూ 2007

ఒక Reply వదిలి

మీరు ఉపయోగించవచ్చు ఈ HTML టాగ్లు

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