update:
Forgot to mention that the app only breaks and shows that error when I try to login as asp.net membership user (sql membership provider), before that everything is fine and the app communicates with the sql just fine.
Hello,
I'm writing an asp.net app that's using asp.net sqlmembership and connecting to a SQL Server 2008 database remotely via VPN,
connection string:
add name="MonoSqlServer" connectionString="Data Source=MONO;Initial Catalog=SMSPortal;Integrated Security=SSPI;"
this works perfectly if I use the inbuilt http server that comes with visual studio...but if I deploy this to my local IIS (same machine as the inbuilt server) I get an exception:
Exception Details: System.Data.SqlClient.SqlException: Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.
What am I doing wrong?
BR