Ho creato e compilato un controllo personalizzato d'esempio e l'ho inserito nella sottodirectory Bin della cartella che uso per testare le mie pagine .aspx

Nella pagina .aspx lo invoco con il seguente codice:

codice:
<%@ Page Language="VB" %>
<%@ Register TagPrefix="ACME" Namespace="MyCustomControls" Assembly="CustomControls" %>
<script runat="server">

    ' Insert page code here
    '

</script>
<html>
<head>
</head>
<body>
    <form runat="server">
        <ACME:CUSTOMCONTROLS id="MyControl" runat="server" />
    </form>
</body>
</html>
Però mi viene fuori questo errore:





Messaggio di errore del parser: Could not load type MyCustomControls.CUSTOMCONTROLS from assembly CustomControls, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null.

Errore nel codice sorgente:


Riga 12: <body>
Riga 13: <form runat="server">
Riga 14: <ACME:CUSTOMCONTROLS id="MyControl" runat="server" />
Riga 15: </form>
Riga 16: </body>

Cosa vuoldire e come posso risolverlo?Grazie 1000!