dispalying web.config in browser

reshma

Member
Joined
Mar 10, 2005
Messages
15
Programming Experience
1-3
Hi,
Is there anyway to display the web.config file in a browser??



Thanks,
Reshma
 
hi,

One way to display the file is by using httpHandlers in the web.config file:

<configuration>
<system.web>
<httpHandlers>
<remove verb="*" path="*.config"></remove>
</httpHandlers>
</system.web>
</configuration>

Is there anyother way other than this??

Thanks,
Reshma
 
Back
Top