我是ASP.NET的新手,我有一个我无法解决的问题。 我知道,我知道......有很多信息要研究这个问题,所以我关注所有选项和线程,我无法解决问题:(
基本上我更改了项目名称和命名空间。我在位于视图文件夹中的web.config文件中设置了名称空间。 现在我有以下问题:
Server Error in '/' Application.
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 'Models' could
not be found (are you missing a using directive or an assembly reference?)
Source Error:
Line 31: public class _Page_Views_Home_Index_cshtml :
System.Web.Mvc.WebViewPage<Models.Transaction> {
Line 32:
Line 33: #line hidden
Source File: C:\Users\xamor\AppData\Local\Temp\Temporary ASP.NET Files\vs\3bcd733a\f5c0c449\App_Web_index.cshtml.a8d08dba.yfewlf9d.0.cs Line: 31
我现在每次项目运行时都会生成一个自动生成的文件,我的web.config文件是:
<pages pageBaseType="System.Web.Mvc.WebViewPage">
<namespaces>
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Optimization"/>
<add namespace="System.Web.Routing" />
<add namespace="WebAPI" />
</namespaces>
</pages>
如果有人可以帮助我,我真的很感激任何帮助。
提前致谢。