在App_Code中定义并设置为Compile的VB类未定义

时间:2017-01-26 13:46:09

标签: asp.net vb.net

我在App_Code文件夹中定义了一个类,并且构建操作设置为Compile,但它仍然会抛出Type 'Global.XXX.xxx.MyControl' is not defined.错误。

类别:

Namespace XXX.xxx
    Public Class MyControl
        Inherits TextBox
        ...code...
    End Class
End Namespace

页面用法:

<%@ Register TagPrefix="xxx" Namespace="XXX.xxx" %>
...
<xxx:MyControl runat="server" id="control" />

有什么想法吗?再一次,我已经将这个类的构建操作设置为Compile,但它只是没有。

0 个答案:

没有答案