我在文件夹中有一个Config.cs
文件App_Code
:
namespace C
{
public class Config
{
......
}
}
在我的 default.aspx.cs 页面中,我添加了using C;
但我无法加载该页面。它说:
CS0246: The type or namespace name 'C' could not be found (are you missing a using directive or an assembly reference?)
我正在使用 CodeFile 而不是 CodeBehind,并且我已经尝试将 Build Action 属性设置为,Compile
但我在类属性页面中找不到该选项。我正在使用 VS 2012。
当我在 VS 2012 中按 F5 并在该端口下访问我的站点时,它工作正常。它仅在我尝试直接访问我的页面时显示错误,就像任何其他用户会尝试的那样。