当我在localhost上测试我的网站(asp.net c#.net4)时,一切正常。 但是,当我将其发布到我的网络服务器时,我收到错误:
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0246: The type or namespace name 'MyWhateverNamedHere' could not be found (are you missing a using directive or an assembly reference?)
我的代码文件(MyWhateverNamedHere。 cs )位于我的App_Code文件夹中, IS 已移至网络服务器。
我已经阅读过人们将代码文件移出App_Code文件夹的地方。不适合我。我试着给它们命名空间,静态引用以及我能想到的一切。然后我找到了一个解决方案,说 Build Phases>编译。但这不是“网站”的选择。
任何帮助?