C# .Net Core error : server error in '/' application
-
Here is the message that pops up when i try to run my code in C# server error: in :application specified web pages version "3.0.0.0" could not be found. update your web.config to specify a different version. current version: "2.0.0.0:"
I have tried that and it seems its leading me to more errors
-
I have tried that and it seems its leading me to more errors
There's a secret error somewhere in your secret code. You should fix that. Seriously, how do you expect anyone to be able to help you based on the complete lack of information you've provided? :wtf:
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
There's a secret error somewhere in your secret code. You should fix that. Seriously, how do you expect anyone to be able to help you based on the complete lack of information you've provided? :wtf:
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
So sorry for that here is the thang: I cant take a pic of it Server Error in '/' Application Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: The CodeDom provider type "Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral. publicKey=31bf3856ad364e35" could not be located. ... to add to that.. the web.config and packages.config are ticked red
-
So sorry for that here is the thang: I cant take a pic of it Server Error in '/' Application Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: The CodeDom provider type "Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral. publicKey=31bf3856ad364e35" could not be located. ... to add to that.. the web.config and packages.config are ticked red
You either haven't installed the
Microsoft.CodeDom.Providers.DotNetCompilerPlatform
package, or the version you have installed doesn't match the version specified in yourweb.config
file.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
So sorry for that here is the thang: I cant take a pic of it Server Error in '/' Application Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: The CodeDom provider type "Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral. publicKey=31bf3856ad364e35" could not be located. ... to add to that.. the web.config and packages.config are ticked red
Thank you so much man... now there is another error displaying after installing Server Error in'/' Application Parse Error Message: vould not load type 'NPA.MvcApplication'
-
You either haven't installed the
Microsoft.CodeDom.Providers.DotNetCompilerPlatform
package, or the version you have installed doesn't match the version specified in yourweb.config
file.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
Thanks Richard i have tried to install and now i am getting a different error gain. Thanks for your help..this is the new error Server Error in'/' Application Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error and modify your source file appropriately. Parse Error Message: Could not load type 'NPA.MvcApplication'
-
Thanks Richard i have tried to install and now i am getting a different error gain. Thanks for your help..this is the new error Server Error in'/' Application Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error and modify your source file appropriately. Parse Error Message: Could not load type 'NPA.MvcApplication'
You have an error in your
Global.asax
file - it doesn't match theGlobal.asax.cs
class definition.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
You have an error in your
Global.asax
file - it doesn't match theGlobal.asax.cs
class definition.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
thank you for your responses. HOW DO I GO ABOUT CORRECTING THE ERROR
-
thank you for your responses. HOW DO I GO ABOUT CORRECTING THE ERROR
Fix your code so that the class name matches.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
Here is the message that pops up when i try to run my code in C# server error: in :application specified web pages version "3.0.0.0" could not be found. update your web.config to specify a different version. current version: "2.0.0.0:"
In my opinion there's a strange error in the message you're receiving. It shouldn't say that because what is describing has nothing to do with running your code.