How would I from asp.net validate a SQL Server 2005/8 db login and if that is valid sign the user in to the application?
I would also like to use this username and password in the connection string if possible. I can think of a way to achieve this with string.replace on UID and PWD but that's hardly ideal.
I am not interested in windows authentication since that isn't valid here. Pure sql server logins. I already have a way of doing that with using the windows api's.
Also not interested in the membership providers.