Most likely, since your file is located in a folder inside the web root, when it is created, VS changes the namespace for the generated files. For example, if your site name is MyWebsite , then the default namespace for it is MyWebsite;
namespace MyWebsite
but for your aspx file inside welcome_teams it should be:
namespace MyWebsite.welcome_teams
so on the aspx page try changing:
<% Page ... inherits="welcome_teams_default" %>
to
<% Page .. Inherits="MyWebsite.welcome_teams.welcome_teams_default" %>
source share