Google Analytics İzleme

20 Ekim 2011

asp.net mvc 3 - /Content/Site.css dosyasının görüntülenememe problemi

Bu hata /Content/Site.css dosyasına gerekli erişim izninin olmamasından dolayıdır. web.config'de herkesin erişimesi için izin tanımı yapılmalıdır.

 <configuration>
...

<location path="Content">
<system.web>
 
<authorization>
   
<allow users="*" />
 
</authorization>
</system.web>
</location>

...

<system.web>
<authorization>
 
<deny users="?" />
</authorization>
</system.web>
.....

</configuration>

Kaynak:

Hiç yorum yok: