1. installed the ajax extensions
2. added all the necessary ajax web.config stuff
3. Drag and drop Telerik.Web.UI.dll into the GAC
4. added the safecontrol for this as such
<SafeControl Assembly="Telerik.Web.UI, Version=2008.1.515.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" />
<SafeControl Assembly="Telerik.Web.UI, Version=2008.1.515.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.Design" TypeName="*" Safe="True" />
with the correct version.
and the error i get when i add these safecontrols is:
Parser Error Message: This page has encountered a critical error. Contact your system administrator if this problem persists.
Source Error:
|
when i take out the safecontrol the page works fine?
7 Answers, 1 is accepted
Hi guys,
Does the user control which generates the exception hosts the grid instance (Welcome.ascx)? If so, can you please check whether stripping the grid control from it addresses it?
Additionally, I suggest you examine the 'Integrating RadControls in MOSS' chapter from the online documentation which elaborates on how to integrate our controls under Sharepoint environment:
http://www.telerik.com/help/aspnet-ajax/introduction.html
Kind regards,
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
the welcome.ascx does not host it. this is standard control within sharepoint. does this build of the telerik.web.ui.dll support the sharepoint functionality? because ive tried to install this on two separate instances of sharepoint?
RadControls for ASP.NET AJAX can be integrated under MOSS as explained in the chapter from the documentation I linked in my previous reply. The error indicates that it is generated by the below-mentioned user control, hence I assume that if you address it your site should function normally.
Regards,
Stephen
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Unfortunately from the information provided so far I am not able to determine the exact cause of the issue you are facing in this particular case (since we have not been contacted with regards to a similar problem before).
Can you please check whether migrating to the Q1 2008 SP2 version of RadControls for ASP.NET AJAX (2008.1.619) or the Q2 2008 release which will be announced later today alleviates the abnormality? Upgrade instructions you can find in this KB article on our site.
Best regards,
Stephen
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
i hope you have foud your way around this issue, but since i just overcame this, and i did not see any answers for this, anywhere in the forum, i'm posting what i did here, that worked:
. Try REMOVING from the version in the safecontrol entries the '.35' part. leaving just something like this:
<
SafeControl Assembly="Telerik.Web.UI, Version=2008.2.1001, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" />
<
SafeControl Assembly="Telerik.Web.UI, Version=2008.2.1001, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.Design" TypeName="*" Safe="True" />