Ошибка 500 - внутренняя ошибка сервера из-за отсутствия объявления раздела
Я случайно удалил.Net Framework и переустановил ту же версию 4.5
Но мой сервер может быть в сети, но недоступен из-за внутренней ошибки сервера. Код ошибки: 0x80070032
После проверки кажется, что строка номер 11 раздела конфигурации "system.web.extensions" не может быть прочитана, потому что в ней отсутствует объявление раздела. Но я не знаю, что менять.
Код файла веб-конфигурации
<?xml version="1.0" encoding="utf-8"?>
<configuration>
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.5" />
</system.Web>
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="50000000" />
</webServices>
</scripting>
</system.web.extensions>
<system.web>
<!-- maxRequestLength
Indicates the maximum file upload size supported by ASP.NET. This limit can be
used to prevent denial of service attacks caused by users posting large files to
the server. The size specified is in kilobytes. The default is 4096 KB (4 MB).
-->
<httpRuntime maxRequestLength="102400" executionTimeout="3600" />
<!-- DYNAMIC DEBUG COMPILATION
Set compilation debug="true" to enable ASPX debugging. Otherwise, setting this value to
false will improve runtime performance of this application.
Set compilation debug="true" to insert debugging symbols (.pdb information)
into the compiled page. Because this creates a larger file that executes
more slowly, you should set this value to true only when debugging and to
false at all other times. For more information, refer to the documentation about
debugging ASP .NET files.
-->
<compilation defaultLanguage="c#" debug="true" targetFramework="4.5" />
<!-- CUSTOM ERROR MESSAGES
Set customError mode values to control the display of user-friendly
error messages to users instead of error details (including a stack trace):
"On" Always display custom (friendly) messages
"Off" Always display detailed ASP.NET error information.
"RemoteOnly" Display custom (friendly) messages only to users not running
on the local Web server. This setting is recommended for security purposes, so
that you do not display application detail information to remote clients.
-->
<customErrors defaultRedirect="public/error.aspx" mode="RemoteOnly" />
<!-- AUTHENTICATION
This section sets the authentication policies of the application. Possible modes are "Windows", "Forms",
"Passport" and "None"
-->
<authentication mode="Forms">
<forms name="JoeboyAuth" loginUrl="public/signin.aspx" protection="None" path="/" />
</authentication>
<pages theme="Skin1">
<namespaces>
<add namespace="System.Web.Optimization" />
</namespaces>
<controls>
<add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" />
</controls>
</pages>
Framework 4.5 уже переустановлен, но все еще не работает. Подскажите, что делать в этой ситуации