Sumit Gupta
Sumit Gupta

Reputation: 569

Set the folder permission which is out of IIS

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

Answers (1)

Mohamed Kamal
Mohamed Kamal

Reputation: 2352

regarding the second part

<configuration>
    <system.web><identity impersonate="true"/></system.web> 
</configuration> 

Upvotes: 1

Related Questions