ASP.NET [SqlException (0x80131904): Ошибка входа для пользователя 'NT AUTHORITY \ ANONYMOUS LOGON'.] Ошибка - PullRequest
0 голосов
/ 10 октября 2019

Я новичок в asp.net. Я хочу разработать базовый веб-сайт на сервере, который содержит 2 gridview (получение данных из SQL) для отображения информации. Когда я отлаживаю свой проект на сервере, он работает (mysite / default.aspx), но без сервера мой сайт не работает и выдает ошибку следующим образом;В чем проблема?

Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
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: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information 
regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:


[SqlException (0x80131904): Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.]
System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 
waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, 
DbConnectionOptions userOptions, DbConnectionInternal& connection) +345
System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, 
TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection) 
+156
System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, 
TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, 
DbConnectionInternal& connection) +258
System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection 
outerConnection, 
DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions 
userOptions) +312
System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry) +202
System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry) +413
System.Data.SqlClient.SqlConnection.Open() +128
System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 
startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +172
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String 
srcTable, IDbCommand command, CommandBehavior behavior) +178
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable) +119
System.Web.UI.WebControls.SqlDataSourceView.ExecuteSelect(DataSourceSelectArguments arguments) +2868
System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, 
 DataSourceViewSelectCallback 
callback) +26
DevExpress.Web.Internal.DataContainer.PerformSelect() +151
DevExpress.Web.ASPxDataWebControlBase.DataBindInternal() +166
DevExpress.Web.ASPxWebControl.DataBind() +50
DevExpress.Web.Internal.DataHelperBase.EnsureDataBound(Boolean ensureChildControls) +74
 DevExpress.Web.Internal.DataContainer.EnsureDataBound() +154
 DevExpress.Web.ASPxDataWebControlBase.OnPreRender(EventArgs e) +26
  System.Web.UI.Control.PreRenderRecursiveInternal() +162
 System.Web.UI.Control.PreRenderRecursiveInternal() +256
 System.Web.UI.Control.PreRenderRecursiveInternal() +256
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean 
includeStagesAfterAsyncPoint) +6875

 Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.7.3282.0

И моя конфигурация IIS для аутентификации: * Анонимная аутентификация: включена * Аутентификация ASP.NET: включена * Базовая аутентификация: отключена * Аутентификация с помощью форм: отключена * Аутентификация Windows: включена

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...