Click here to Skip to main content
15,892,072 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I added a HtmlEditor control to my form.
When I run the project I get the following error:
Could not find any resources appropriate for the specified culture or the neutral culture.Make sure AjaxControlToolkit.Properties.Resources.resources was correctly embedded or linked into assembly "AjaxControlToolkit" at compile time, or that all the satellite assemblies required are loadable and fully signed.



Exception Details: System.Resources.MissingManifestResourceException: Could not find any resources appropriate for the specified culture or the neutral culture.  Make sure "AjaxControlToolkit.Properties.Resources.resources" was correctly embedded or linked into assembly "AjaxControlToolkit" at compile time, or that all the satellite assemblies required are loadable and fully signed.



How do I resolve the above error?
Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Posted
Updated 21-Oct-10 21:29pm
v3
Comments
Dalek Dave 22-Oct-10 3:30am    
Minor Edit for Grammar.

Is a reference to AjaxControlToolkit.Properties.Resources.resources missing in your project?
Also see here[^].
 
Share this answer
 
Add toolkitscript manager to your master page if you have a master page otherwise your aspx page.
 
Share this answer
 
1. Check the following line is added in your code or not
XML
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>


2. Don't forget to add following line.
XML
<asp:ToolkitScriptManager runat="server"></asp:ToolkitScriptManager>


3. If you are using master page then add script manger to the master.
XML
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server"></asp:ScriptManagerProxy>
 
Share this answer
 
Comments
Deepu S Nair 24-Jun-15 3:15am    
Did you see that the question is nearly 5 years old and already solved.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900