besides creating the project file, you need to create the hacky designer
files so the code behind can access the aspx controls (he designer file
is a partial class that declares all controls as protected). probably
just editing each aspx file in the ide will create the designer files.
in some cases you will need to change control references to FindControl.
this is because in websites the codebehind is a true partial class,
while in a web application the codebehind is more of the inheritance
model. (see partial class rules for separate assemblies for more info)
-- bruce (sqlwork.com)