Custom Controls
I'm trying to create the custom control to display the "Message of the Day". I'm using Visual Studio and created the dll file CustomMotdControl.dll located at \Wrox\WebControlLibrary1\bin\.
In default.aspx I have added the lines:
<%@ Register TagPrefix="WroxUnitedMotd" Namespace="WroxUnited" Assembly="CustomMotdControl" %>
and
<wroxunitedmotd:motdcontrol id = "WuMoted" name="Matches" today" runat="server" />
When I run it in debug mode I see the following error:
File or assembly name CustomMotdControl, or one of its dependencies, was not found.
Is it something with specifiying the path? Any ideas?
|