I have a question. I edited the source of the FreeTextBox and use this in my website. This DLL is named FreeTextBox.dll. Now I want to use on another page the original textbox. So I uploaded the orginel DLL and called it FreeTextBox1.dll.
I use asp.net 1.1, so I changed the following things in my aspx page.
<%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls" Assembly="FreeTextBox1" %>
I changed the following in the web.config
<httpHandlers>
<add verb="GET"
path="FtbWebResource.axd"
type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox1" />
</httpHandlers>
But I got this error:
The located assembly's manifest definition with name 'FreeTextBox1' does not match the assembly reference.
Line 256: <add assembly="System.EnterpriseServices, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 257: <add assembly="System.Web.Mobile, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 258: <add assembly="*"/>
Line 259: </assemblies>
Has anyone any suggestions?
Thanks in advance.
Rik