我有一個Config.cs
文件App_Code
文件夾中:類在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而不是代碼隱藏,我已經嘗試過的生成操作屬性設置爲Compile
但我不能找到在類屬性頁選項。我正在使用VS 2012.
雖然當我在VS 2012中按F5並在該端口下訪問我的站點時,它工作正常。只有當我嘗試直接訪問我的頁面時,它纔會顯示錯誤,就像任何其他用戶試圖訪問的頁面一樣。
可能的重複 - http://stackoverflow.com/questions/1222281/classes-residing-in-app-code-is-not-accessible/37818086#37818086 – vapcguy