Hello,
I'm trying to implement Windows Authentication into an ASP.NET application. I have a
VB.NET class library that has a class for getting user information (which works correctly), but when I'm using that class library in the ASP.NET application, I'm getting the ASPNET account. Here it is more specifically:
In the class library, when I test it with a
VB.NET application, the user ID has information of:
DOMAIN\bmains
but when I run this class library in my ASP.NET application, the user ID has information of:
MYCOMPUTER\ASPNET
Also, please not that I don't have anonymous access or basic as my choices for authenication.
How do I get ASP.NET to incorporate login names through windows authentication without resorting to a login screen?
Thanks,
Brian Mains