Gaurav Agrawal
Gaurav Agrawal

Reputation: 227

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

Upvotes: 3

Views: 4122

Answers (2)

Yosoyadri
Yosoyadri

Reputation: 551

In our case (using version 0.7 of the library), we had to install the 2010 version of the C++ Redistributable:

x64: http://www.microsoft.com/en-us/download/confirmation.aspx?id=14632

Upvotes: 4

East of Nowhere
East of Nowhere

Reputation: 1396

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

Upvotes: 5

Related Questions