Sto realizzando un sito e ho riscontrato problemi con una pagina asp(guestbook). Quando la apro con explorer(xp sp2) e clikko su "apri" parte Dreamweaver. Se la apro con Netscape invece mi carica il codice. Dove posso aver sbagliato?
P.S.: Sto seguendo un "corso" di Dreamweaver su un libro, e ho seguito tutte le istruzioni... ma il risultato non è mai positivo, anche se rifaccio tutto da capo.
questo è il codice:
<%@LANGUAGE="VBSCRIPT"%>
<%
Dim Recordset1
Dim Recordset1_numRows
Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_commenti_STRING
Recordset1.Source = "SELECT Data, Utente, Commento FROM commenti ORDER BY Data DESC"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()
Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = 5
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h1 align="center">Commenti dei lettori</h1>
<p align="center"></p>
<p align="center"> </p>
<table border="1">
<tr>
<td>Data</td>
<td>Utente</td>
<td>Commento</td>
</tr>
<% While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF)) %>
<tr>
<td><%=(Recordset1.Fields.Item("Data").Value)%></td>
<td><%=(Recordset1.Fields.Item("Utente").Value)% ></td>
<td><%=(Recordset1.Fields.Item("Commento").Value)% ></td>
</tr>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
</table>
<p align="center"> </p>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>