Hi Frnz ,
i am getting the error while i tried to add ajax control toolkit to .net framework. i have added ajaxcontrol toolkit to bin folder on webapplication .
Hi Frnz ,
i am getting the error while i tried to add ajax control toolkit to .net framework. i have added ajaxcontrol toolkit to bin folder on webapplication .
Short guide: the message "is not a .NET framework module" usually means the file you are trying to use is not a managed CLR assembly (it may be native, corrupted, blocked by Windows, or built for a different target). Since already copied the toolkit DLL into the web app bin, run a few quick checks and fixes before trying other downloads.
First, confirm the DLL is a managed assembly and not corrupted. From a Developer Command Prompt try:
corflags AjaxControlToolkit.dll or
ildasm AjaxControlToolkit.dll If corflags/ildasm fails with an error that the file is not a valid .NET assembly, the DLL you have is not a managed build (or it is corrupted). If ildasm shows a manifest, the file is managed.
Common fixes
Install-Package AjaxControlToolkit Extra diagnostics
dumpbin /headers AjaxControlToolkit.dll to check PE headers if needed. At runtime, use the Assembly Binding Log Viewer (Fuslogvw) to trace binding failures.If the problem persists, include the exact Visual Studio error text, the output of corflags/ildasm, your project target framework, and Visual Studio version for further troubleshooting.
try with AjaxControlToolkit.Binary.NET35.zip from
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.