Code:
myXmlDoc.LoadXml(myReader("XML"))
myReader.Close()
myXmlDoc.SelectSingleNode("//dataobject/overridingclassification").InnerText = ddlOverride.SelectedValue.ToString
lblResult.Text = myXmlDoc.OuterXml.ToString()
I am trying to modify an XML Document with a drop down list in a project I am doing. Above is a snippet of the code I am running. It does not seem to be working. Any help will be appreciated. I have a July deadline. Thanks.