<%
wwwftproot = @"/website/public";
fullpath = @"/_resources/includes/mobile-logo.inc";
root = Server.MapPath("~");
parent = System.IO.Path.GetDirectoryName(root);
grandgrandParent = System.IO.Path.GetDirectoryName(System.IO.Path.GetDirectoryName(parent));
global = string.Concat(grandgrandParent,wwwftproot, fullpath);
contents = System.IO.File.ReadAllText(global);
Response.Write(contents);
%>
<%
wwwftproot = @"/website/public";
fullpath = @"/_resources/includes/footer.inc";
root = Server.MapPath("~");
parent = System.IO.Path.GetDirectoryName(root);
grandgrandParent = System.IO.Path.GetDirectoryName(System.IO.Path.GetDirectoryName(parent));
global = string.Concat(grandgrandParent,wwwftproot, fullpath);
contents = System.IO.File.ReadAllText(global);
Response.Write(contents);
%><%
wwwftproot = @"/website/public";
fullpath = @"/_resources/includes/footcode.inc";
root = Server.MapPath("~");
parent = System.IO.Path.GetDirectoryName(root);
grandgrandParent = System.IO.Path.GetDirectoryName(System.IO.Path.GetDirectoryName(parent));
global = string.Concat(grandgrandParent,wwwftproot, fullpath);
contents = System.IO.File.ReadAllText(global);
Response.Write(contents);
%>