Devo spostare un applicazione asp net con targetFramework 4.5 su un win server 2016
ho installato iis con asp net 4.6
quando apro l'Url
ho il seguente errore:
Errore HTTP 404.17 - Not Found
Il contenuto richiesto sembra essere uno script e non verrà fornito dal gestore di file statici.
Cosa posso controllare ?
il web.config è questo:
<?xml version="1.0" encoding="utf-8"?>
<!--
Per ulteriori informazioni sulla configurazione dell'applicazione ASP.NET, visitare
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<appSettings>
<add key="enableSimpleMembership" value="false" />
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="UrlMVC" value="http://localhost:61841" />
<add key="logFile" value="/Files/Log" />
<add key="emailFrom" value="xxx" />
<add key="smtp" value="xxx" />
<add key="port" value="25" />
<add key="account" value="xxx" />
<add key="password" value="xxxx" />
<add key="SSL" value="off" />
<add key="emailEnable" value="off" />
</appSettings>
<system.web>
<sessionState mode="InProc" timeout="30" />
<authentication mode="Forms">
<forms loginUrl="/default.aspx"></forms>
</authentication>
<compilation debug="true" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.webServer>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
<remove name="TRACEVerbHandler" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
</system.webServer></configuration>
Grazie
JK
Modificato da Jk il 31 ottobre 2019 08:39 -
Modificato da Jk il 31 ottobre 2019 08:43 -