I am seeing the same error message, but with slightly different circumstances.
I've successfully converted my existing code from ASP.NET 1.1 to a 2.0 Web Application Project, and am using 5 controls that were ported from 1.1. Rather than using @Register on the page, I've got the following in my web.config:
<pages>
<controls>
<add assembly="Boron.StrongArm.Web" namespace="Boron.StrongArm.Web.Controls" tagPrefix="bcn"/>
</controls>
</pages>
Here's an example of a control that works:
<bcn:GenericInput id="emailAddress" runat="server" RightText="(Optional)" Prompt="Email Address:"
ControlVirtualPath="Controls/EmailInput.ascx" StartPage="default.aspx" StepTitle="Step 1"
StepNumText="Step 1 of 6:" SimpleFormat="<strong>Mail results to:</strong> {0}" HelpLabel="Start" DataFormat="" GenericValue=""></bcn:GenericInput>
This next one, created after the port does not:
<bcn:ItemPicker id="itemPicker" runat="server" ControlVirtualPath="Controls/ItemPicker.ascx" DataFormat="" HelpLabel="" SimpleFormat="" StepNumText="" StepTitle="" ></bcn:ItemPicker>
The error message I get is:
Warning 1 Generation of designer file failed: Unknown server tag 'bcn:ItemPicker'. F:\LocalProjWeb\Boron\Test01\WizardTest01.aspx 39 0 Test01
Any assistance you could provide would be gratefully appreciated.
Bob G