Issuing impersonation of a user account without a domain in asp.net

I wanted to impersonate the user who is in the abc domain from the user of the xyz domain in asp.net. Paste the code if possible.

+3
source share
1 answer

In web.config

<identity impersonate="true"
         userName="domain\user" 
          password="password" />
0
source

All Articles