DataLoader changes during development

This commit is contained in:
2007-11-14 14:49:18 +00:00
parent da9b899424
commit ef81207dbe
28 changed files with 2118 additions and 962 deletions

View File

@@ -21,7 +21,7 @@ namespace DataLoader
{
xmldoc = new XmlDocument();
if (xml == null)
xmldoc.LoadXml("<config/>");
xmldoc.LoadXml("<Config/>");
else
xmldoc.LoadXml(xml);
}
@@ -30,7 +30,7 @@ namespace DataLoader
{
xmldoc = new XmlDocument();
if (xml == null)
xmldoc.LoadXml("<config/>");
xmldoc.LoadXml("<Config/>");
else
xmldoc.LoadXml(xml);
AddItem(ename, aname.Replace(' ','_'), avalue);