Hi, I have a c# app that I've been working on and I added a new class to the App_Code directory.
I wanted to use the class in one of my aspx pages, so I tried to add a using statement in my code behind
that referenced the class. I tried EVERYTHING and I consistently got compile errors stating
The type or namespace name does not exist in the namespace (are you missing an assembly reference?)
Eventually, I just created a new directory called 'classes' and copied the class over from
App_Code, and then it worked COMPLETELY FINE. It just wouldn't compile when the class was stored
in App_Code. God that was frustrating. I thought that's what App_Code was for. What gives?