Asp.Net使用dll与web应用程序项目

时间:2012-08-02 11:21:20

标签: c# asp.net dll class-library

我正在开发一个asp.net web应用程序项目。我已经添加了一个带有add reference命令的dll文件但是当我说出使用namespace_name时我得到错误。

注意:我尝试过Asp.Net网站。但问题是continue.i检查了框架版本。

C#:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using DenemePc; <-- dll file

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
}

ERROR:

'DenemePc'可以找到类型或命名空间名称(您是否缺少using指令或程序集引用?)

1 个答案:

答案 0 :(得分:3)

我相信我已经回答了类似的问题ASP.NET => Compiler Error Message: CS0246: The type or namespace name 'HtmlAgilityPack'

请在DenemePc的参考DLL上将Copy Local属性设置为True

这会将dll复制到应用程序的输出目录