I cannot just connect to my database due to this error
Login failed for user '
Consider these lines of code:
SqlConnection conn = new SqlConnection("Data Source=arohbi;Initial Catalog=SPADA_FIS;Persist Security Info=True;User ID=sa; Password=p@ssword "); conn.Open();
After running conn.Open() I received this strange error message
Login failed for user '.'
Last time I used this configuration and connection string, and it works fine, but one fine day, when I try to connect this message, this is the only answer. However, I manage to connect using the management studio. The connection from the server database to my local machine works fine. Any guy knows the answer.
This time it gets worse. Take a look at these images: 

I used the same connection string for both sqlconnection connections, but I was confused why the other failed?
The connection string used for both:
Data Source=arohbi;Initial Catalog=SPADA_FIS;Persist Security Info=True;User ID=espada; Password=p@ssword
source share