Hi there, In the old days of the classic ASP, you would normally use the include method to include the file, however it's no longer supported in the ASP.NET, and it provides a couple of alternatives: + You can convert the aspx file to the web user control, then simply add it to the web page. + You can use the Master page (with the ASP.NET 2.0). + You can use the Server.Execute[^] method to execute the aspx file, then add the result markup to the output stream of the Response object. Just some ideas.