环境VS2005 ASP.NET(VB.NET)定义了二个用户控件,一个是Controls_TopList另一个是Controls_List
Public Class Controls_TopList
    Inherits System.Web.UI.UserControl
''''略....
end classPublic Class Controls_List
    Inherits System.Web.UI.UserControl
''''略....
end class
Dim cl As New Controls_TopList '编译提示"未定义类型Controls_TopList" 在提示列表里也没有.Dim cl As New Controls_List '没问题,输入Dim cl As New就有提示出来.
我实在是比较不出这两件控件有什么同,为什么Controls_TopList不能用而Controls_List 却可以.