'ASP.NET - IIS 8.5 - 500.19 - 0x8007000d error
In our Windows server 2012R2 we have a problem with one of our websites.
While searching on Stack Overflow I saw some answer about URL rewrite module, but that's just fine & updated.
What else could be the problem and how can fix it ?
This is the web.config file.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath=".\ILH.Web.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
</system.webServer>
</location>
</configuration>
And this is the error when we try to access the website on windows local server browser: Print screen error
Solution 1:[1]
Thank you for your answers but I have worked it out here is a brief example after changing the decimal format separator to "," in windows region settings:
string s = "123.234";
decimal decimalValue;
NumberStyles style = System.Globalization.NumberStyles.Any;
decimal.TryParse(s, style, null, out decimalValue);
Console.WriteLine(decimalValue);
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Perry |
