Hi Tôi đang cố gắng để chạy dotless trên trang web .net4 web địa phương của tôiLỗi HTTP 500,23 sau khi thêm dotless vào trang web địa phương của tôi
cấu hình web của tôi trông như thế này:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="dotless" type="dotless.Core.configuration.DotlessConfigurationSectionHandler, dotless.Core" />
</configSections>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<httpHandlers><add path="*.less" verb="GET" type="dotless.Core.LessCssHttpHandler, dotless.Core" /></httpHandlers></system.web>
<dotless minifyCss="false" cache="true" web="false" />
<system.webServer>
<handlers>
<add name="dotless" path="*.less" verb="GET" type="dotless.Core.LessCssHttpHandler,dotless.Core" resourceType="File" preCondition="" />
</handlers>
</system.webServer>
</configuration>
đây là lỗi tôi nhận được
HTTP Error 500.23 - Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.
Most likely causes:
This application defines configuration in the system.web/httpHandlers section.
Bạn có thể vui lòng trợ giúp?
này cố định vấn đề của tôi cho một dự án cổ mà tôi cần thiết để chạy! Cảm ơn +1. – JonH
Bạn có thể đánh dấu câu trả lời này là được chấp nhận không? – Dragomok