This is a migrated thread and some comments may be shown as answers.

Adding prometheus controls to WEB Project with exiting RAD controls

3 Answers 136 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Jason McIntyre
Top achievements
Rank 2
Jason McIntyre asked on 08 Nov 2007, 05:10 AM
Hello
   Is there anything special I need to do to add Prometheus Editor into a WEB Project with RAD calendars ?

   When I add the http handlers and the DLLs to the bin folder and the <telerik:radeditor runat="server" ID="RadEditor1"
     SkinID="DefaultSetOfTools"
     Height="400px"></telerik> 
 tag to my aspx page

   I receive 20+ missing assembly references.

Jason

3 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 08 Nov 2007, 05:31 PM
Hi Jason,

Could you please send us a screenshot or a dump of the error messages. After that we will try to provide an appropriate solution for the reported problem.

Best regards,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Rainer Friedl
Top achievements
Rank 1
answered on 13 Nov 2007, 08:21 AM
Hello,I am facing the same problem:

Error Message:
Could not load file or assembly 'Telerik.Web.UI, Version=2007.2.918.0, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

Error message seems clear to me: actually this version is not available anymore because it is the version 2007.2.1107.0!

I have created a support ticket with the error message and the stack trace. Let me know if you need further information.

Thanks,
Rainer
0
Rumen
Telerik team
answered on 13 Nov 2007, 09:25 AM
Hi Rainer,

After upgrading a project to a new version you should update the Telerik.Web.UI.DialogHandler.aspx and Telerik.Web.UI.SpellCheckHandler.axd declarations in web.config file as shown below:

<httpHandlers>
      ...
      <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2007.2.1107.0, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
        validate="false" />
      <add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Version=2007.2.1107.0, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
        validate="false" />
</httpHandlers>

You should write the fully qualified names only if you store the Telerik.Web.UI.dll in the GAC. If the Telerik.Web.UI.dll file is placed in the /bin folder you can use short names, e.g.:


<httpHandlers>
    ...
    <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI"
 validate="false" />
    <add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI"  validate="false" />
</httpHandlers>


Regards,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Editor
Asked by
Jason McIntyre
Top achievements
Rank 2
Answers by
Rumen
Telerik team
Rainer Friedl
Top achievements
Rank 1
Share this question
or