I create a new vs.net project and added all the files from a asp.net website project.
When I compile, it couldn't find a reference to a class.
In the AppCode the class was defined, but without a namespace.
So I added a namespace, and then on the default.aspx.cs
(this is where the error was originating) I added the using statement
.
The using statement was not picking up the namespace.
What could the issue be?