<Ann:Annunciator id="Annunciator3" style="Z-INDEX: 101; LEFT: 240px; POSITION: absolute; TOP: 56px"
总是提示这一句有错误,怎么回事?

解决方案 »

  1.   

    <%@ Register TagPrefix="ann" Namespace="MySoft.WebControls" Assembly="MySoft.WebConctrols.Annunciator" %>
    这一行制定的小写的“ann”
    <Ann:Annunciator id="Annunciator3" style="Z-INDEX: 101; LEFT: 240px; POSITION: absolute; TOP: 56px"
    这一行是大写的
      

  2.   

    好像是什么命名空间有问题,但就是不知道错在哪里,将源码贴出来,请高人指点一下
    Namespace MySoft
        Namespace WebControls
            <DefaultProperty("Value"), ToolboxData("<{0}:Annunciator runat=server></{0}:Annunciator>")> Public Class Annunciator
                Inherits System.Web.UI.WebControls.WebControl : Implements INamingContainer            Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
                    writer.Write("My test")
                End Sub
            End Class
        End Namespace
    End Namespace
      

  3.   

    解决了,将WebControls改为Web就行了,改为WebCtrls就不行,这是什么怪事?WebCtrls也不是关键字啊!!!