0
ASP.Net Impersonation
Posted by Rajendra Prasad Panchati
on
Thursday, February 11, 2010
in
ASP.Net
Impersonation is the concept of giving permission to do a specific action on system IO objects.
To enable impersonation, we need to change at System.web block as shown below
<identity impersonate="true" userName="username" password="password"/> in our project's web.config file.
To enable impersonation, we need to change at System.web block as shown below
<identity impersonate="true" userName="username" password="password"/> in our project's web.config file.
More
Less