G
Guest
This is what I want to achieve
1) ASP.NET code to be able to pick up the Domain username of the person
viewing the page AND
2) Access to another SQL Server in the same domain to be under a fixed
domain user, using the Microsoft Enterprise Library Data Application Block.
Doesn't
- 1) above require in Web.Config
<authentication mode="Windows" />
<identity impersonate="true"/>
- 2) above require instead
<authentication mode="Windows" />
<identity impersonate="true" userName="MyDomain\FIXEDUserName"
password="apassword"/>
Are there any way around this? My company disallows SQL Authentication.
1) ASP.NET code to be able to pick up the Domain username of the person
viewing the page AND
2) Access to another SQL Server in the same domain to be under a fixed
domain user, using the Microsoft Enterprise Library Data Application Block.
Doesn't
- 1) above require in Web.Config
<authentication mode="Windows" />
<identity impersonate="true"/>
- 2) above require instead
<authentication mode="Windows" />
<identity impersonate="true" userName="MyDomain\FIXEDUserName"
password="apassword"/>
Are there any way around this? My company disallows SQL Authentication.