33 messaggi dal 06 settembre 2002
Ho questo codice:

codice:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Import Namespace = "System.Data"%>
<%@ Import Namespace = "System.Data.OleDb" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<script language="c#" runat="server">
void Load_Page(object Object, EventArgs e)
{
string Scn = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + Server.MapPath("Clienti.mdb");
OleDbConnection cnn = new OleDbConnection(Scn);
cnn.Open();
OleDbCommand cmd = new OleDbCommand("select * from Categories", cnn);
OleDbDataReader res = cmd.ExecuteReader();
while (res.Read())
{
Response.Write(res["GENERI"]);
res.Close();
cnn.Close();
}


}

</script>

<body>

<form id="form1" runat="server">
<div style="text-align: center">
Benvenuti nel miglior negozio di DVD Italiano!<table style="width: 353px; height: 176px">
<tr>
<td>

</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>

<br />
<br />
<span style="font-size: 24pt">Ecco i principali generi presenti<br />
<br />

</span>

</div>
</form>
</body>
</html>

Dovrebbe stamparmi a video i generi presenti nel db, ma non compare nulla, solo i testi in HTML!!!Dove sbaglio??
3.168 messaggi dal 06 settembre 2002
Contributi | Blog
Cio,

prova cambiando

while (res.Read())
{
Response.Write(res["GENERI"]);
res.Close();
cnn.Close();
}

in

while (res.Read())
{
Response.Write(res["GENERI"]);
}
res.Close();
cnn.Close();

Nothing can be born from hartred

Stefano (SM15455) Mostarda
http://blogs.aspitalia.com/SM15455
Rome Italy
33 messaggi dal 06 settembre 2002
niente da fare nemmeno così!
Anche eliminando

res.Close();
cnn.Close();

ottengo il medesimo risultato!

Ho notato una cosa strana, anche mettendo il nome di un db che non esiste nella cartella, non vi viene fuori nessun errore, non mi sembra una cosa normale!!Si sarà incartato Visual Web Developer??
33 messaggi dal 06 settembre 2002
Risolto! :D
Scrivevo

void Load_Page(object Object, EventArgs e)

al posto di

void Page_Load(object Object, EventArgs e)
3.168 messaggi dal 06 settembre 2002
Contributi | Blog
Ciao,

Ho letto solo ora, beh, meglio così no

Byez
.

Nothing can be born from hartred

Stefano (SM15455) Mostarda
http://blogs.aspitalia.com/SM15455
Rome Italy

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.