could not load file or assembly system.windows...The system cannot find the file specified
-
Hi All, I develop an ASP.Net Web Application (Classic) .Net-framework 4.0 and every thing ok, but when publish the application on IIS and open the login page some and click the login button this error shown some times: "could not load file or assembly system.windows., Version 2.0.5.0, Culture=netural, PublicKeyTocken=7cec85d7bea7798e or one of its dependencies. The system cannot find the file specified" Please let me know hot to solve it and what is the reason? Thank All
From the error message, it looks like you're using a portable class library (PCL), but your server is missing a .NET Framework update from March 2011: Update for the .NET Framework 4: March, 2011[^] c# - Could not load file or assembly System, Version=2.0.5.0 in .NET 4 MVC 4 application - Stack Overflow[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
From the error message, it looks like you're using a portable class library (PCL), but your server is missing a .NET Framework update from March 2011: Update for the .NET Framework 4: March, 2011[^] c# - Could not load file or assembly System, Version=2.0.5.0 in .NET 4 MVC 4 application - Stack Overflow[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
Hi, I try to solve it using the Patch from this link which provided by you, Update for the .NET Framework 4: March, 2011[^] but it doesn't work when click the download link. Can you provide me another link to download it? Thank You
-
Hi, I try to solve it using the Patch from this link which provided by you, Update for the .NET Framework 4: March, 2011[^] but it doesn't work when click the download link. Can you provide me another link to download it? Thank You
Download Microsoft .NET Framework 4 KB2468871 from Official Microsoft Download Center[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
Download Microsoft .NET Framework 4 KB2468871 from Official Microsoft Download Center[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
hi, we download the update from the Microsoft center but still the problem exist. do you have other solution ? thank you
-
hi, we download the update from the Microsoft center but still the problem exist. do you have other solution ? thank you
-
Hi, Can you describe the issue cause to me, i need to solve it and work on framework 4.0 and I can't upgrade to framework greater than 4.0 because I use a third party tools which work only on framework 4.0. If we solve it this will good, otherwise we need to upgrade all used tools. thank you
-
Hi All, I develop an ASP.Net Web Application (Classic) .Net-framework 4.0 and every thing ok, but when publish the application on IIS and open the login page some and click the login button this error shown some times: "could not load file or assembly system.windows., Version 2.0.5.0, Culture=netural, PublicKeyTocken=7cec85d7bea7798e or one of its dependencies. The system cannot find the file specified" Please let me know hot to solve it and what is the reason? Thank All
zead jalil wrote:
could not load file or assembly system.windows
Are you referencing anything in System.Windows? Since it is a web app, you shouldn't be. Look in your references and make sure all dlls are in the bin folder that need to be.
There are two kinds of people in the world: those who can extrapolate from incomplete data. There are only 10 types of people in the world, those who understand binary and those who don't.
-
Hi, Can you describe the issue cause to me, i need to solve it and work on framework 4.0 and I can't upgrade to framework greater than 4.0 because I use a third party tools which work only on framework 4.0. If we solve it this will good, otherwise we need to upgrade all used tools. thank you
As I said in my first reply, it's an issue with portable class libraries (PCLs). The 2011 update allows PCLs to locate the appropriate runtime versions of the v2.0.5.0 files.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
zead jalil wrote:
could not load file or assembly system.windows
Are you referencing anything in System.Windows? Since it is a web app, you shouldn't be. Look in your references and make sure all dlls are in the bin folder that need to be.
There are two kinds of people in the world: those who can extrapolate from incomplete data. There are only 10 types of people in the world, those who understand binary and those who don't.
really I didn't use any windows dll, and I don't know the reason and try all possible solutions such as fix framework 4.0, and many solution I got it from research.
-
zead jalil wrote:
could not load file or assembly system.windows
Are you referencing anything in System.Windows? Since it is a web app, you shouldn't be. Look in your references and make sure all dlls are in the bin folder that need to be.
There are two kinds of people in the world: those who can extrapolate from incomplete data. There are only 10 types of people in the world, those who understand binary and those who don't.
Thank you very much, This Solve my problem.
-
Thank you very much, This Solve my problem.