i am debugging my asp.net application , i got this error message.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: SQL Server does not exist or access denied.
Source Error:
Line 523:
Line 524: Try
Line 525: cn.Open()
Line 526: cmd.CommandType = CommandType.StoredProcedure
Line 527: SqlCommandBuilder.DeriveParameters(cmd)
Where 204.10.105.253 is the IP address which corresponds to the SQL Server you are using on Jodo.
Actually, I prefer to use the URL (e.g. mssqln.mydomain.com) just in case the IP address happens to change, which evidently occurred here not too long ago.
This is purely a shot in the dark, but I notice you don’t include the Initial catalog parameter. Also, make certain that the user ID and password are correct and that you are using SQL authentication and not Windows authentication.
PLEASE HELP :Server Error in ‘/sample’ Application
Hello,
PLEASE HELP
I am a beginner in .NET. I wanted to know why this error exists.
i want to display the tables in server in my web application remotly.
i gave a windows server authentication and my connection through the data adapter.where “source name=DEVSERVER”
i wrote the following command in the load_page.
SQL Server does not exist or access denied.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: SQL Server does not exist or access denied.
Source Error:
Line 100: private void Button1_Click(object sender, System.EventArgs e)
Line 101: {
Line 102: sqlDataAdapter1.Fill(dataSet11);
Line 103: DataGrid1.DataBind();
Line 104: