Example #1
0
        /// <summary>
        /// Gets the XSL template.
        /// </summary>
        /// <param name="strType">type</param>
        /// <param name="strParentSiteUrl">parent site url.</param>
        /// <returns>XmlTextReader</returns>
        public XmlTextReader GetXSLTemplate(string type, string siteURL)
        {
            XmlTextReader objXmlTextReader = null;

            objCommonDAL = new CommonDAL();
            /// Get the XSLTemplate from sharepoint list
            objXmlTextReader = objCommonDAL.GetXSLTemplate(type, siteURL);

            return objXmlTextReader;
        }