40 messaggi dal 23 marzo 2001
Errore server nell'applicazione '/aspx'.
--------------------------------------------------------------------------------

Errore del parser
Descrizione: Si è verificato un errore durante l'analisi di una risorsa necessaria per soddisfare la richiesta. Verificare i dettagli dell'errore specifico riportato di seguito e modificare il file sorgente in modo appropriato.

Messaggio di errore del parser: Il contenuto di tipo literal ('34') non è consentito in un 'System.Web.UI.WebControls.Repeater'.

Errore nel codice sorgente:


Riga 32: 32 <body>
Riga 33: 33 <asp:repeater id="Repeater" runat="server">
Riga 34: 34 <itemtemplate>
Riga 35: 35 <tr>
Riga 36: 36 <td><%# Container.DataItem("nome") %></td>


File sorgente: C:\aspx\Default.aspx Riga: 34


--------------------------------------------------------------------------------
Informazioni di versione: Versione di Microsoft .NET Framework:1.0.3705.288; Versione di ASP.NET:1.0.3705.288

Ecco il codice della pagina ti ringrazio.

1 <%@ Page Language="VB" %>
2 <%@ Import namespace="System.Data" %>
3 <%@ Import namespace="System.Data.OleDb" %>
4
5 <script runat="server">
6 Sub Page_Load(obj as Object, e as EventArgs)
7
8 'Creazione della connessione con OleDb
9
10 dim connessione as new OleDbConnection_
11 ( "Provider=Microsoft.Jet.OleDb.4.0" &_
12 "Data Source c:\wwwroot\inetpub\aspcode\database.mdb")
13
14 'Apertura della connessione
15
16 Dim comando as new OleDbDataAdapter _
17 ("SELECT * from lezione order by Id",connessione)
18
19 'Riempimento del DataSet
20
21 Dim ds as DataSet = New DataSet()
22 Comando.fill(ds,"lezione")
23
24 'Metodo di visualizzazione Repeater
25
26 Repeater.DataSource = ds.Tables("lezione"), _
27 DefaultView
28 DataBind()
29 End Sub
30 </script>
31 <html>
32 <body>
33 <asp:repeater id="Repeater" runat="server">
34 <itemtemplate>
35 <tr>
36 <td><%# Container.DataItem("nome") %></td>
37 <td><%# Container.DataItem("cognome") %></td>
38 </tr>

39 </itemtemplate>
40 </asp:repeater>
41 </body>
42 </html>


probabilmente è questo:
Repeater.DataSource = ds.Tables("lezione"), _
27 DefaultView

scrivilo così:
Repeater.DataSource = ds.Tables("lezione").DefaultView

Daniele Bochicchio | ASPItalia.com | Libri
Chief Operating Officer@iCubed
Microsoft Regional Director & MVP
40 messaggi dal 23 marzo 2001
Ti ringrazio Daniele, ma niente sempre stesso errore.
Ho provato anche con Dreamweaver e mi da un errore anche li. Forse non ho installato qualcosa? Il framwork è sbagliato? Non so
Spero di risolvere, aiuto.
Eccolo

Errore server nell'applicazione '/aspx'.
--------------------------------------------------------------------------------

Errore del parser
Descrizione: Si è verificato un errore durante l'analisi di una risorsa necessaria per soddisfare la richiesta. Verificare i dettagli dell'errore specifico riportato di seguito e modificare il file sorgente in modo appropriato.

Messaggio di errore del parser: Impossibile trovare il file o l'assembly di nome DreamweaverCtrls oppure una delle sue dipendenze.

Errore nel codice sorgente:


Riga 1: <%@ Page Language="VB" ContentType="text/html" %>
Riga 2: <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutral" %>
Riga 3: <MM:DataSet
Riga 4: id="DataSet1"


File sorgente: C:\aspx\TMP2gvdkcu92c.aspx Riga: 2

Analisi del caricamento dell'assembly: Le informazioni che seguono possono aiutare a stabilire perché non è stato possibile caricare l'assembly 'DreamweaverCtrls'.


=== Pre-bind state information ===
LOG: DisplayName = DreamweaverCtrls, Version=1.0.0.0, Culture=neutral, PublicKeyToken=836f606ede05d46a
(Fully-specified)
LOG: Appbase = file:///C:/aspx
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Publisher policy file is not found.
LOG: No redirect found in host configuration file (C:\WINNT\Microsoft.NET\Framework\v1.0.3705\aspnet.config).
LOG: Using machine configuration file from C:\WINNT\Microsoft.NET\Framework\v1.0.3705\config\machine.config.
LOG: Post-policy reference: DreamweaverCtrls, Version=1.0.0.0, Culture=neutral, PublicKeyToken=836f606ede05d46a
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/aspx/bf699d02/a0b13a7/DreamweaverCtrls.DLL.
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/aspx/bf699d02/a0b13a7/DreamweaverCtrls/DreamweaverCtrls.DLL.
LOG: Attempting download of new URL file:///C:/aspx/bin/DreamweaverCtrls.DLL.
LOG: Attempting download of new URL file:///C:/aspx/bin/DreamweaverCtrls/DreamweaverCtrls.DLL.
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/aspx/bf699d02/a0b13a7/DreamweaverCtrls.EXE.
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/aspx/bf699d02/a0b13a7/DreamweaverCtrls/DreamweaverCtrls.EXE.
LOG: Attempting download of new URL file:///C:/aspx/bin/DreamweaverCtrls.EXE.
LOG: Attempting download of new URL file:///C:/aspx/bin/DreamweaverCtrls/DreamweaverCtrls.EXE.




--------------------------------------------------------------------------------
Informazioni di versione: Versione di Microsoft .NET Framework:1.0.3705.288; Versione di ASP.NET:1.0.3705.288

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.