添加Assembly asp.net时出错

时间:2017-04-15 05:34:34

标签: c# asp.net .net-assembly dllimport

我正在尝试在我的asp.net Web应用程序的bin文件夹中添加程序集' obout_Window_NET.dll' keept,但得到此编译错误

  

类型或命名空间名称'窗口'名称空间中不存在' OboutInc' (你错过了一个程序集引用吗?)

我的 Default.aspx代码如下

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" 
Inherits="_Default" %>

<%@ Register TagPrefix="owd" Namespace="OboutInc.window" 
 Assembly="obout_Window_NET" %>

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

任何人请向我提出建议

1 个答案:

答案 0 :(得分:0)

在添加程序集时,我刚刚使用了 Namespace =“OboutInc.window”,我应该在大写字母中使用 Namespace =“OboutInc.Window”'W'。

<%@ Register TagPrefix="owd" Namespace="OboutInc.Window" 
Assembly="obout_Window_NET" %>