Hi Alphonse,
Yes, you can make a subdirectory which has a own web.config and put the
certain page which need particluar setting in the subdirectory. In
addition, the web.config file's schema also provide the <location> element
which can help to specify setting for a certain path (even a certain page).
For example, if you'd like to override the <httpRuntime> setting for just
one page(upload.aspx), you can apply the <location> element in the
web.config file as below:
<configuration>
<location path="upload.aspx">
<httpRuntime maxRequestLength="128"/>
</location>
</configuration>
Looks cool?
For detailed description on the <location> element, please refer to the
following reference in MSDN:
#<location> Element
http://msdn.microsoft.com/library/en-us/cpgenref/html/gngrfLocationElement.a
sp?frame=true
Thanks.
Regards,
Steven Cheng
Microsoft Online Support
Get Secure!
www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx
-------------------------------------------------------------------------