编译器错误消息:CS0246

时间:2015-12-09 10:40:54

标签: c# asp.net

我在家里工作(ASP.NET),一切都很好。但是当我将网络更新到服务器时,它会出现这个错误:

  

编译器错误消息:CS0246:类型或命名空间名称“ClibDAL”   无法找到(您是否错过了使用指令或程序集   引用?)

我有一些方法类(ClibDAL),当我在Visual Studio中运行Web时,一切正常。

错误行:

Line 4:  <%@ Import Namespace="ClibDAL" %>

我的网络配置:

<configuration>

  <system.web>
    <pages>
      <namespaces>
        <add namespace="ClibDAL" />
      </namespaces>
    </pages>
    <compilation debug="true" targetFramework="4.5"/>
    <httpRuntime requestValidationMode="2.0"/>
  <customErrors mode="Off"/>
  </system.web>


</configuration>

ClibDAL.cs位于“App_Code”文件夹中。

ClibDAL班主任:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using System.Data.Odbc;
using System.Collections;
using System.Web;
namespace ClibDAL
{
  public class ClAccessData : System.Web.UI.Page
  {

0 个答案:

没有答案