public void DrawProfilesModule()
        {
            XmlDocument document = new XmlDocument();
            string      xml      = string.Empty;


            Utilities.DataIO data    = new Profiles.Profile.Utilities.DataIO();
            RDFTriple        request = new RDFTriple(Convert.ToInt64(Request.QueryString["subject"]));


            document.LoadXml(data.GetNetworkCategory(request).ToString());

            XslCompiledTransform xslt = new XslCompiledTransform();
            XsltArgumentList     args = new XsltArgumentList();

            args.AddParam("root", "", Root.Domain);

            litCategoryList.Text = Framework.Utilities.XslHelper.TransformInMemory(Server.MapPath("~/Profile/modules/NetworkCategories/NetworkCategories.xslt"), args, document.OuterXml);
        }