არქივი

როგორ რედაქტირებისას InfoPath XML ფაილი ფორუმი ბიბლიოთეკა Programmatically in SharePoint 2007

ქვემოთ ხაზი კოდი snippet არის განაახლოს InfoPath xml ჩანაწერი(ფაილი)

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

MemoryStream myInStream = new MemoryStream(item.File.OpenBinary());
XmlTextReader reader = new XmlTextReader(myInStream);

XmlDocument doc = 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(“ჩემი:შენახული”, nameSpaceManager).InnerText = DateTime.Today.ToString();
System.Text.ASCIIEncoding კოდირების = 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 🙁 )

1 კომენტარის რედაქტირება InfoPath XML ფაილი ფორუმი ბიბლიოთეკა Programmatically in SharePoint 2007

  • არ განიხილება თქვენ დასძინა ზოგიერთი განსხვავებული მოსაზრებები თქვენი სტატია? მე ვფიქრობ, რომ, შესაძლოა, გაზარდოს მაყურებელს გაგება,.

დატოვე პასუხი

თქვენ შეგიძლიათ გამოიყენოთ ამ HTML ტეგები

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