18 messaggi dal 14 ottobre 2002
Aiuto !!!
Sto cercano di leggere i dati da sqlserver, ma non ottengo che questo messaggio di errore:
Impossibile eseguire l'accesso per l'utente 'NT AUTHORITY\SERVIZIO DI RETE'.
Descrizione: Eccezione non gestita durante l'esecuzione della richiesta Web corrente. Per ulteriori informazioni sull'errore e sul suo punto di origine nel codice, vedere l'analisi dello stack.

Dettagli eccezione: System.Data.SqlClient.SqlException: Impossibile eseguire l'accesso per l'utente 'NT AUTHORITY\SERVIZIO DI RETE'.

Errore nel codice sorgente:


Riga 16:
Riga 17: DS = new DataSet()
Riga 18: MyCommand.Fill(DS, "amministratori")
Riga 19:
Riga 20: MyDataGrid.DataSource=DS.Tables("amministratori").DefaultView


Il codice è:
-----------------------------------------

<%@ page language="VB" Debug="true" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>


<script runat="server" >

Sub Page_Load(Sender As Object, E As EventArgs)

Dim DS As DataSet
Dim MyConnection As SqlConnection
Dim MyCommand As SqlDataAdapter

MyConnection = New SqlConnection("Integrated Security=SSPI;Persist Security Info=false;Initial Catalog=db_xxxx;Data Source=server1;User Id=boh;password=boh;SERVER=(local);UID=IUSR_STARBLAZER;WSID=boh;DATABASE=
db_xxxx;Trusted_Connection=Yes")
MyCommand = New SqlDataAdapter("select * from amministratori", MyConnection)

DS = new DataSet()
MyCommand.Fill(ds, "amministratori")

MyDataGrid.DataSource=ds.Tables("amministratori").DefaultView
MyDataGrid.DataBind()
End Sub

</script>
<html>
<body>

<h3><font face="Verdana">DataGrid</font></h3>

<ASP:DataGrid id="MyDataGrid" runat="server"
Width="700"
BackColor="#ccccff"
BorderColor="black"
ShowFooter="false"
CellPadding=3
CellSpacing="0"
Font-Name="Verdana"
Font-Size="8pt"
HeaderStyle-BackColor="#aaaadd"
EnableViewState="false"
/>

</body>
</html>

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.