I want to create classes that are separate files (not code within he aspx.cs) file, and I do not want to put them in the APP_CODE directory.
I want the separate class files to reside in the same directory as the main code behind file (aspx.cs).
Each class will perform a function.
I may be using these classes improperly so correct my terminology if I am wrong.
What I want is for many of my functions (methods) to be code in files outside my code behind file and simply called from withing the code behind file. I believe I do this by creating classes. Sorry if I am wrong I am quite a bit rusty.
Each class (or whatever it is called) will be named according to its function.
I am so ignorant of how to do this, I really need a tutorial. I cannot find any, or any other answers that address exactly what I want to do. I believe this is called an "outer class". Where as an "inner class" is written inside of another class.
I know how to write a class file, I just don't know how to access it from the code behind file aspx.cs