Hello every body,
I would like to Register an Assembly in a WebForm to Use a Custom Control.
I created a classe named CustomerAdminMgr wich derive from the UserControl class.I compile it into a dll (using csc /target:library /out:Custom.dll CustomerAdminMgr.cs).
It means that I have created the assembly right?
Now i add the reference to this assembly and in my aspx page add this in the begining of my page:<%@ Register TagPrefix="Cust" Namespace="myNameSpace" Assembly= "Custom" %>
and I try to use it like this <cust:customeradminmgr runat="server"></cust:customeradminmgr>
but I have an error which say that the assembly is missing.
has anybody any idea of what's wrong??
Thank in advance
I would like to Register an Assembly in a WebForm to Use a Custom Control.
I created a classe named CustomerAdminMgr wich derive from the UserControl class.I compile it into a dll (using csc /target:library /out:Custom.dll CustomerAdminMgr.cs).
It means that I have created the assembly right?
Now i add the reference to this assembly and in my aspx page add this in the begining of my page:<%@ Register TagPrefix="Cust" Namespace="myNameSpace" Assembly= "Custom" %>
and I try to use it like this <cust:customeradminmgr runat="server"></cust:customeradminmgr>
but I have an error which say that the assembly is missing.
has anybody any idea of what's wrong??
Thank in advance