Ejemplo n.º 1
0
 public void ProcessRequest(HttpContext context)
 {
     var response = context.Response;
     response.Clear();
     response.ContentType = "text/html";
     var locator = new BookmarkLocator(context);
     response.Write(locator.BookmarkSelector());
     response.End();
 }
Ejemplo n.º 2
0
        public void ProcessRequest(HttpContext context)
        {
            var response = context.Response;

            response.Clear();
            response.ContentType = "text/html";
            var locator = new BookmarkLocator(context);

            response.Write(locator.BookmarkSelector());
            response.End();
        }