Example #1
0
        public int GetTopicMaxNum()
        {
            int         result  = 1;
            XmlDocument xmlNode = new VTemplateHelper().GetXmlNode();

            int.TryParse(xmlNode.SelectSingleNode("root/TopicProductMaxNum").InnerText, out result);
            return(result);
        }
Example #2
0
        public string GetDefaultBg()
        {
            XmlDocument xmlNode = new VTemplateHelper().GetXmlNode();

            return(xmlNode.SelectSingleNode("root/DefaultBg").InnerText);
        }