As far as I can tell, you only have to change Codebehind to CodeFile.
That makes sense, but here are several comments I have about that:
1. When I create a new WebForm it still uses Codebehind. I don't know if
this has something to do with the fact that I am using the Visual Studio
.NET 2005 Web Application Project model instead of the Visual Studio .NET
2005 Website model.
2. If I do change Codebehind to CodeFile I recieve an error saying
'TextFiles' is ambiguous in the namespace 'WebApplication1'.
3. I tried creating one of my simple WebForms from scratch (deleting the
*.aspx and *.aspx.vb files and recreating it using the same controls and vb
code). It compiled and worked with no errors, but when I modify all the
lines of code in other WebForms to look the same (the @Page directive and
!DOCTYPE tag in the *.aspx file and add the Partial keyword to the class
definition in the *.aspx.vb file), it does not work. Is there some
configuration file that gets modified when you create a new WebForm by going
to Add->New Item?
I am not sure why, but simply modifying the *.aspx and *.aspx.vb files of a
WebForm won't let me get rid of the "Web Form Designer Generated Code "
region that used to get added by Visual Studio .NET 2003. If anyone has any
ideas, I would appreciate them.

Signature
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansokalski.com/
> As far as I can tell, you only have to change Codebehind to CodeFile.
>
[quoted text clipped - 9 lines]
>>
>> What changes do I need to make to this?
Dune - 28 Aug 2006 22:51 GMT
Hi there,
I'm having the exact same problem.
Just wondering if you ever found a resolution or workaround in the end?
Cheers
> That makes sense, but here are several comments I have about that:
>
[quoted text clipped - 32 lines]
> >>
> >> What changes do I need to make to this?
Nathan Sokalski - 29 Aug 2006 01:28 GMT
What I discovered is that ASP.NET 2.0 organizes the code slightly
differently. The control declarations created by the designer are now put in
a file with the extension *.aspx.designer.vb or *.ascx.designer.vb. If you
want to copy and paste the declarations from ASP.NET 1.1 code into one of
these files, I would suggest that you create one file from scratch so that
you can see what the file looks like, the file layout is very basic. Good
Luck!

Signature
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansokalski.com/
> Hi there,
>
[quoted text clipped - 47 lines]
>> >>
>> >> What changes do I need to make to this?