Skip to content

Instantly share code, notes, and snippets.

@sebastiantecsi
Forked from dnstommy/showconfig.aspx
Created August 24, 2020 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebastiantecsi/b7cf232b800d9dd1095c3a7827b68cde to your computer and use it in GitHub Desktop.
Save sebastiantecsi/b7cf232b800d9dd1095c3a7827b68cde to your computer and use it in GitHub Desktop.
<%@ Page Language="C#" AutoEventWireup="true" %>
<%@ Import Namespace="Sitecore.Configuration" %>
<%@ Import Namespace="System" %>
<%@ Import Namespace="System.Xml" %>
<%
XmlDocument configuration = Factory.GetConfiguration();
Response.ContentType = "application/xml";
Response.Write(configuration.OuterXml);
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment