The other difficulty with this approach is that you wouldn't really have access to controls created on the ASP.NET page directly without using FindControl.
However, all is not lost. Instead of using an ASP.NET Web Site, you can choose to use an ASP.NET Web Application Project. This uses the ASP.NET 1.1 functionality which allows you to essentially precompile.

The caveat is that, while you'll have the controls precompiled into your classes, you won't actually have the content on your page stored in your DLL.
The alternative is to use the web site publishing wizard, which performs the automatic ASP.NET compilation before deployment. This, however, renders a series of DLLs that is fairly unusable; what is generated doesn't really make a lot of sense to developers (you'd get classes such as ASP.my_homepage_aspx) which, while usable, would hinder your development efforts.