Code:
Private myQuestions As New XmlDocument
myQuestions.Load(filename)
myQuestions.Value.ToString
I have an xml file that I would like to load into a SQL database as a text file. I cannot load the xml file directly because I am using a vendor software that requires the Text field. I am not sure how to load the XmlDocument as a String, but the above code was my attempt at that. Any help would be appreciated. Thanks.