When I deploy an ASP.NET project to the server which contains many ASCX files, the first page load can take a while presumably because the ASCX files are being compiled. Only the ones that are actually on the page are compiled though, so part of my deployment process is to navigate to a bunch of pages on the site. Once all pages have been navigated to, the site operates smoothly.
I would rather that ASP.NET compiles all those ASCX files immediately when I deploy, to remove this sloppy deployment step.
What is the best way to accomplish this?