NT Authority\Network Service Error

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm getting the error "Login failed for the user NT Authority\Network Service"
I'm running this application in visual studio and the app is supposed to fill a datagrid from an SQL Server Db.
Could this be an ASPNET permission issue? If so what is the correct configuration
private void binding(

sqlConnection1.open(); //fails her
sqlDataAdapter1.Fill(dataset1)
DataGrid1.DataBind()
sqlConnection1.close()
}
 
Back
Top