Bên dưới dòng của đoạn mã là để cập nhật các bản ghi InfoPath xml(tập tin)
SPList _list = _web.Lists[“SampleFormLib”];
MemoryStream myInStream = new MemoryStream(item.File.OpenBinary());
Đọc XmlTextReader = new XmlTextReader(myInStream);
XmlDocument doc = new XmlDocument();
doc.Load(đọc);
reader.Close();
myInStream.Close();
XmlNamespaceManager nameSpaceManager = new XmlNamespaceManager(doc.NameTable);
nameSpaceManager.AddNamespace(“của tôi”, “http://schemas.microsoft.com/office/infopath/2003/myXSD/2009-06-11T12:44:57“);
doc.DocumentElement.SelectSingleNode(“của tôi:Trạng thái”, nameSpaceManager).InnerText = “Lưu”;
doc.DocumentElement.SelectSingleNode(“của tôi: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)), sự thật);
item.File.Update();
Hãy chắc chắn rằng bạn thực hiện item.File.Update() cam kết thay đổi (Tôi đã nhận lỗi trong khi thực hiện item.Update() và dành vài giờ để tìm 🙁 )
Bạn đã xem xét thêm một số ý kiến khác nhau để bài viết của bạn? Tôi nghĩ rằng nó có thể tăng cường sự hiểu biết người xem.