We have a database app that users login to and they authenticate via SQL authentication. So in the SQL Server (2000) database, there are the actual SQL users and the passwords are managed by the server. (not a separate table that we query, but an actual SQL Server user)
I am now building a separate web front end on this tool, and different users are going to be logging in - one of the user types will be that SQL User.
How can I check their authentication using ASP.NET? The ASP.NET app itself runs as one of those users, so I don't need them to actually be that user, I just need to check to see if their password matches that for the user.
Anything I have searched for on this relates to checking users in a table - which I know how to do - this is checking against the actual SQL Users.
I am now building a separate web front end on this tool, and different users are going to be logging in - one of the user types will be that SQL User.
How can I check their authentication using ASP.NET? The ASP.NET app itself runs as one of those users, so I don't need them to actually be that user, I just need to check to see if their password matches that for the user.
Anything I have searched for on this relates to checking users in a table - which I know how to do - this is checking against the actual SQL Users.