public int GetTopicMaxNum() { int result = 1; XmlDocument xmlNode = new VTemplateHelper().GetXmlNode(); int.TryParse(xmlNode.SelectSingleNode("root/TopicMaxNum").InnerText, out result); return(result); }
public string GetDefaultBg() { XmlDocument xmlNode = new VTemplateHelper().GetXmlNode(); return(xmlNode.SelectSingleNode("root/DefaultBg").InnerText); }