Simple C# USING statement for folder
- by salvationishere
I am developing a VS 2008 web application in C#. I am trying to include a namespace that is stored in one of my folders. So instead of:
using ADONET_namespace
it is stored in "Admins" folder. How do I modify this aspx.cs file to include Admins/ADONET_namespace?
Currently I get following error from aspx.cs file:
The type or namespace name 'ADONET_namespace' could not be found (are you missing a using directive or an assembly reference?)