I am new to sqlserver, I have a connection string as follows:
< add name="test" connectionString="server=dbServer\SQLEXPRESS;database=test;integrated security=SSPI;" />
and the site connects and works fine.
I created a user in SSMS 17.4, gave it a name
< add name="test" connectionString="server=dbServer\SQLEXPRESS;database=test;User Id=dbUser; Password=letmein;" />
the site fails saying "login failed for user 'dbUser'"
The user has following :
server roles: public, dbcreator
user mapping: default schema: dbo
database role memberships: db_owner, public
any idea why it fails on use of username/password?
Thanks