On Sep 10, 10:34*pm, "Z.K." <nos...@nospam.net> wrote:
> The only weird thing is
> that I had a App_Code folder and it rename it to Old_App_Code though it
> still seems to using the code in that folder.
>
This is because ASP.NET 2.0 tries to dynamically compile any classes
it finds under the /App_Code directory of an application at runtime,
you explictly *DO NOT* want to store classes that you compile as part
of your VS 2005 Web Application Project under an "app_code" folder. If
you do this, then the class will get compiled twice -- once as part of
the VS 2005 Web Application Project assembly, and then again at
runtime by ASP.NET.
http://webproject.scottgu.com/CSharp...igration2.aspx