I just converted UberSite
, a vb.net web site to a web application. I get run-time errors saying that there is no such thing as type foo
. When I drill down to the page in the code-view, it gives me an error-correction suggestion: import namespace UberSite
.
If I create a new web application and define foo
there, there is no need to import any namespace to use foo
in the new application.
How can this be? Why does my web application seemingly need to import its own namespace?