I have created a website in ASP.net and have created a class and put it inside of the App_Code folder. However I cannot access this from my other pages. Does something need to be configured to allow this? It's worked in a previous project - but not this one.
namespace CLIck10.App_Code
{
public static class Glob
{
...
}
}