blah blah blah is here! blah blah » Close

1
votes
1 answers

Converting a string into a stream to load XDocument

I have a string representation of an xml file that I want to load into a XDocument. I am getting the error: Illegal characters in path. I tried loading the string xml into a XmlDocument and it worked just fine. I noticed that the XDo ...

2
votes
2 answers

Database or XML file?

sanjib
226

For storing only simple texts or integers, what is the better option : storing it in a Database or just keep it in a XML File. I found that, if I maintain it in XML file, the total Web application size gets reduced. What do you guys thin ...

2
votes
1 answers

Creating a hashtable of name/value pairs from an xml file

I have an xml file that looks like: [code] <root> <label key="home">Home</label> <label key="quit">Quit</label> <label key="start">Start</label> </root> ...

Feedback