Simple C# USING statement for folder

Posted by salvationishere on Stack Overflow See other posts from Stack Overflow or by salvationishere
Published on 2010-05-21T00:09:11Z Indexed on 2010/05/21 0:20 UTC
Read the original article Hit count: 281

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?)

© Stack Overflow or respective owner

Related posts about visual-studio-2008

Related posts about c#