Beispiel #1
0
        public void ProcessRequest(HttpContext context)
        {
            var sitemap = new SitemapGenerator();

            context.Response.ContentType = "Text/xml";
            context.Response.Write(sitemap.getSitemap());
        }