I am Getting this error when I upload my asp.net website on hostgator server but when i upload it on other server like somme.com my site works perfectly I dont what is happening
Error: Could not load file or assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies. The system cannot find the file specified.
to remove this error i add these lines in my web.config file under the system.web section
<compilation debug="False" targetFramework="4.5.2" >
<assemblies>
<add assembly="netstandard, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=cc7b13ffcd2ddd51"/>
</assemblies>
</compilation>
After add these lines i get the new error
Configuration Error
Parser Error Message: Could not load file or assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies. The system cannot find the file specified.
please tell how to solve these error thanks