iis - not - install fastcgi windows server 2012 r2
El proveedor de CodeDom no pudo ubicarse en IIS7 (5)
Intente ejecutar inetmgr (IIS) haga clic con el botón derecho en su sitio web y seleccione Convertir a aplicación. Esto funcionó para mí.
He agregado un sitio en mi IIS, pero cuando intento acceder a la página predeterminada, aparece el siguiente error:
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: The CodeDom provider type "Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" could not be located.
Source Error:
Line 12: <system.codedom>
Line 13: <compilers>
Line 14: <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
Line 15: <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=/"Web/" /optionInfer+" />
Line 16: </compilers>
¿Necesito instalar el paquete "Microsoft.CodeDom.Providers.DotNetCompilerPlatform" con nuget para que funcione o es algo diferente?
Puede comentar toda la sección System.CodeDom desde web.config. Los proyectos WebApplication tendrán la sección CodeDom, los proyectos WebSite no. Coméntalo y debería empezar a trabajar.
Fuente: http://www.codeproject.com/Questions/1034471/Unable-to-run-ASP-net-pages-on-web-server
Resolví un problema similar instalando actualizaciones HERRAMIENTAS-> Instalador de NuGetPackage MENÚ -> TODAS-> Actualización especialmente para Microsoft.CodeDom.Providers.DotNetCompilerPlatform
Respuesta similar a Bayak, tiene configuraciones en WebConfig que no son compatibles para su servidor web. Visual Studio puede agregar mucho peso adicional al archivo de forma predeterminada. Recortar WebConfig para:
<configuration>
<system.web>
<customErrors mode="Off"></customErrors>
<compilation debug="true" targetFramework="4.6.1"/>
<httpRuntime targetFramework="4.6.1"/>
</system.web>
</configuration>