Hello!
Can somebody help me?
I'm using C# and trying to connect to one data base which is on the same computer with IIS.
Here is mistake message:
SELECT permission denied on object 'tblUsers', database 'banking', owner 'dbo'.
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: SELECT permission denied on object 'tblUsers', database 'banking', owner 'dbo'.
Source Error:
Line 29: private void Page_Load(object sender, System.EventArgs e)
Line 30: {
Line 31: sqlDataAdapter1.Fill(DataSet1);
Line 32: DataGrid1.DataBind();
Line 33: }
what doest it mean? And how have i to fight with this problem?
Will be very thankful for any help!
Best regards!
Alexander
Can somebody help me?
I'm using C# and trying to connect to one data base which is on the same computer with IIS.
Here is mistake message:
SELECT permission denied on object 'tblUsers', database 'banking', owner 'dbo'.
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: SELECT permission denied on object 'tblUsers', database 'banking', owner 'dbo'.
Source Error:
Line 29: private void Page_Load(object sender, System.EventArgs e)
Line 30: {
Line 31: sqlDataAdapter1.Fill(DataSet1);
Line 32: DataGrid1.DataBind();
Line 33: }
what doest it mean? And how have i to fight with this problem?
Will be very thankful for any help!
Best regards!
Alexander