Reputation: 569
I need the settings in web.config file of my asp.net application through which i can set permission for particular folder outside IIS. I need this functionality through settings in web.config.
Edited: I need to know that how can we apply impersonation in web.config file
thanks
Upvotes: 0
Views: 226
Reputation: 2352
regarding the second part
<configuration>
<system.web><identity impersonate="true"/></system.web>
</configuration>
Upvotes: 1