App_Code folder issues

后端 未结 6 1057
粉色の甜心
粉色の甜心 2020-12-08 14:35

So I\'m having a really weird issue with my App_Code folder on a new website I\'m designing.

I have a basic class inside of a namespace in the App_Code folder. Ev

6条回答
  •  南笙
    南笙 (楼主)
    2020-12-08 15:03

    I have noticed a mismatch sometimes between the IDE parser and the compiler whenever a compile-time error occurs in a referenced assembly or code file. In that circumstance the IDE will correctly identify the types and provide full support for them, but since the compiler was unable to create the referenced objects, it will complain that the referenced objects don't exist.

    Now I don't want to go accusing anybody of anything—this is just a guess—but you should probably make sure there are not any errors in your referenced code file.

提交回复
热议问题