Click here to Skip to main content
15,887,214 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hello

when i use from combobox of ajaxcontroltoolkit, i would be faced with below 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.


thanks

What I have tried:

i couldn't do any things.

help
Posted
Updated 19-Nov-18 9:39am

1 solution

Have you declared the ScriptManager or ToolkitScriptManager control in your page before declaring your AjaxControlToolKit ComboxBox? You should have something like this in your page:

C#
<asp:ToolkitScriptManager runat="server"></asp:ToolkitScriptManager>


That is one special requirement when using the controls from the AJAX Control Toolkit. The page must contain a ScriptManager/ToolkitScriptManager control as this control is responsible for including all of the necessary JavaScript required by the AJAX Control Toolkit controls.
 
Share this answer
 

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