Algo muy particular seria un error como este en una aplicacion:
Configuration 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: Could not load type 'MyWebPagesStarterKit.Providers.CustomRoleProvider'.
Source Error:
Line 50: <providers>
Line 51: <clear/>
Line 52: <add name="CustomRoleProvider" type="MyWebPagesStarterKit.Providers.CustomRoleProvider"/>
Line 53: </providers>
Line 54: </roleManager>
Para arreglar esto tenemos el atributo inheritInChildApplications para no permitir heredar una sección entera de configuración.
La forma de implementar este atributo es de la siguiente manera:
De esta manera ya podemos tener todas las aplicaciones heredadas que deseemos.<location path="." inheritInChildApplications="false">
<system.web>
<!-- Aqui la configuracion que no deseas heredar -->
</system.web>
</location>
Espero este pequeño aporte les sirva.
Saludos,
0 comentarios:
Publicar un comentario