C
Chrisf
I am passing an InfoPath 2007 form as a string to a Web Service and would
like to modify an attribute's value before saving the entire form in a sql
table but can't seem to find the correct way to do it using C sharp.
This is how I am getting the current value:
XmlDocument doc = new XmlDocument();
doc.LoadXml(data);
string aProgID =
doc.GetElementsByTagName("myrogram").Item(0).InnerText;
I would like to replace aProgID with newProgID for the Program attribute.
Any help would be deeply appreciated.
like to modify an attribute's value before saving the entire form in a sql
table but can't seem to find the correct way to do it using C sharp.
This is how I am getting the current value:
XmlDocument doc = new XmlDocument();
doc.LoadXml(data);
string aProgID =
doc.GetElementsByTagName("myrogram").Item(0).InnerText;
I would like to replace aProgID with newProgID for the Program attribute.
Any help would be deeply appreciated.