Server ASP.Net

<%@Import namespace="System.IO" %>

protected void Page_Load(object o, EventArgs e) {
    Response.Write("the current execution file path is:");
    Response.Write(Request.CurrentExecutionFilePath + "
");
    Response.Write("the Server.Execute file path is:");
    StringWriter sw = new StringWriter();
    Server.Execute("NextPage.aspx", sw);
    Response.Write(sw.ToString() + "
");
}

File: NextPage.aspx

protected void Page_Load(object o, EventArgs e) {
    Response.Write(Request.CurrentExecutionFilePath);
}