<%@ Page language="c#" Debug="true"%> <% // -------------------------------------------------------------------------- // --- Database initialization --- string Base = System.IO.Path.GetDirectoryName(Context.Request.PhysicalPath)+"\\TestFiles"; // --- Response initialization --- Response.ContentType = "text/xml"; Response.Charset = "utf-8"; Response.AppendHeader("Cache-Control","max-age=1, must-revalidate"); System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture("en-US"); // --- Generating data --- Response.Write(""); StringBuilder B = new StringBuilder(); AddDir(Base, "", B); Response.Write(B.ToString()); Response.Write(""); // -------------------------------------------------------------------------- %>