views:

29

answers:

2

I have a class located in App_Code that can't be seen by my ASPX pages.

Anyone know why this could be?

+3  A: 

See this article:

It's a bit too much to explain fully in a post here.

http://vishaljoshi.blogspot.com/2009/07/appcode-folder-doesnt-work-with-web.html

David Stratton
This did it! Thanks. I renamed the App_Code folder to NotApp_Code and set each file to "compile" and it worked like a charm.
MakerOfThings7
A: 

Is this a web application project, or a web site project?

Ensure that the namespace is respected, either by using or fully qualified.

Consider renaming the directory to something else... perhaps "Helpers" or something descriptive.

p.campbell