Раздел конфигурации "system.web/httpruntime" уже определен. Разделы должны появляться только один раз в конфигурационном файле. Смотрите раздел справки <location> Для получения исключений
<?xml version="1.0"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <appSettings> <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" /> <add key="Server" value="DJsWxyfUSQG4FcDS5OzOOndsdfa9oYTW0tUElL9Exo2aA2GYG7v/yj+Nl5bUkRczex5Y/" /> <add key="Database" value="Uu5MiLdfsfdhkaaI+YwVsP4TKTZFt4LvNtyU0dDTRAba5EZU=" /> <add key="User" value="NLLsDcrdsfJ8z/0q6FP9QOMBu2rKr4v1TbvoWgDvcVXtGY=" /> <add key="Password" value="Mi9sdf0Rv7WZP/sODwguIbc4OMGgVoCXxqcsQXpUHxjhjs=" /> </appSettings> <system.web> <httpRuntime maxRequestLength="1048576"/> <compilation debug="true" targetFramework="4.5" /> <httpRuntime targetFramework="4.5" /> <authentication mode="Forms"> <forms loginUrl="Login.aspx" defaultUrl="~/Admin/Security/User-Master.aspx" timeout="30" /> </authentication> <authorization> <allow users="*" /> </authorization> </system.web> <!--<system.web> <httpRuntime maxRequestLength="1048576" executionTimeout="3600" /> </system.web>--> <system.webServer> <directoryBrowse enabled="false" /> <defaultDocument> <files> <clear/> <add value="Forms/Default.aspx" /> </files> </defaultDocument> <httpProtocol> <customHeaders> <clear/> </customHeaders> </httpProtocol> </system.webServer> <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="1073741824" /> </requestFiltering> </security> </system.webServer> </configuration>
Что я уже пробовал:
В моем проекте есть ошибка
Maximum request length exceeded.Поэтому я сделал google и решение состоит в том, чтобы установить
<httpRuntime maxRequestLength="1048576"/>После этого я получил эту новую ошибку.