Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not load file or assembly 'Noesis.Javascript.dll'

I am trying to run java Script code in Asp.net using Noesis.Javascript.dll, but I faced Following error msg so any one can help me to resolve this issues.

{"Could not load file or assembly 'Noesis.Javascript.dll' or one of its dependencies. The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail. (Exception from HRESULT: 0x800736B1)":"Noesis.Javascript.dll"}

Thanks

like image 441
Gaurav Agrawal Avatar asked Dec 10 '25 13:12

Gaurav Agrawal


1 Answers

I had this error during runtime, and when I used sxstrace.exe to get a more informative error message dump, it turned out that Noesis.Javascript.dll wanted an exact version of the C++ Redistributable Package, Microsoft.VC90.CRT.dll, namely version 9.0.30729.6161 I got the right version at http://www.microsoft.com/en-us/download/details.aspx?id=26368

But do learn to use SxSTrace to see if that is your exact issue. An okay introduction to using the tool is here http://blogs.msdn.com/b/junfeng/archive/2006/04/14/576314.aspx

like image 164
East of Nowhere Avatar answered Dec 13 '25 03:12

East of Nowhere