errore nella mia index

cirano

Nuovo Utente
21 Mag 2007
3
0
0
Salve a tutti ho appena messo un sito on line e funziona tutto bene se non fosse per un piccolo problema:la mia index.asp(che non è la home page del sito!quella è index.html)da dove dovrebbe cominciare il blog mi da problemi mentre le altre pagine del blog stesso si visualizzano tranquillamente.
Mi è stato detto:"sul dominio all'apertura del blog è presente un errore di programamzione :

È previsto un valore letterale stringa, ma non sono state trovate virgolette aperte. Errore durante l'elaborazione della ri...
"
non essendo molto pratico con asp chiedo aiuto
Qualcuno potrebbe dare un'occhiata al codice della mia index?


<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/connBlog.asp" -->
<%
Dim rsMessaggi
Dim rsMessaggi_numRows

Set rsMessaggi = Server.CreateObject("ADODB.Recordset")
rsMessaggi.ActiveConnection = MM_connBlog_STRING
rsMessaggi.Source = "SELECT * FROM Blog ORDER BY Giorno DESC"
rsMessaggi.CursorType = 0
rsMessaggi.CursorLocation = 2
rsMessaggi.LockType = 1
rsMessaggi.Open()

rsMessaggi_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = 5
Repeat1__index = 0
rsMessaggi_numRows = rsMessaggi_numRows + Repeat1__numRows
%>
<%
' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables

Dim rsMessaggi_total
Dim rsMessaggi_first
Dim rsMessaggi_last

' set the record count
rsMessaggi_total = rsMessaggi.RecordCount

' set the number of rows displayed on this page
If (rsMessaggi_numRows < 0) Then
rsMessaggi_numRows = rsMessaggi_total
Elseif (rsMessaggi_numRows = 0) Then
rsMessaggi_numRows = 1
End If

' set the first and last displayed record
rsMessaggi_first = 1
rsMessaggi_last = rsMessaggi_first + rsMessaggi_numRows - 1

' if we have the correct record count, check the other stats
If (rsMessaggi_total <> -1) Then
If (rsMessaggi_first > rsMessaggi_total) Then
rsMessaggi_first = rsMessaggi_total
End If
If (rsMessaggi_last > rsMessaggi_total) Then
rsMessaggi_last = rsMessaggi_total
End If
If (rsMessaggi_numRows > rsMessaggi_total) Then
rsMessaggi_numRows = rsMessaggi_total
End If
End If
%>
<%
Dim MM_paramName
%>
<%
' *** Move To Record and Go To Record: declare variables

Dim MM_rs
Dim MM_rsCount
Dim MM_size
Dim MM_uniqueCol
Dim MM_offset
Dim MM_atTotal
Dim MM_paramIsDefined

Dim MM_param
Dim MM_index

Set MM_rs = rsMessaggi
MM_rsCount = rsMessaggi_total
MM_size = rsMessaggi_numRows
MM_uniqueCol = ""
MM_paramName = ""
MM_offset = 0
MM_atTotal = false
MM_paramIsDefined = false
If (MM_paramName <> "") Then
MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
End If
%>
<%
' *** Move To Record: handle 'index' or 'offset' parameter

if (Not MM_paramIsDefined And MM_rsCount <> 0) then

' use index parameter if defined, otherwise use offset parameter
MM_param = Request.QueryString("index")
If (MM_param = "") Then
MM_param = Request.QueryString("offset")
End If
If (MM_param <> "") Then
MM_offset = Int(MM_param)
End If

' if we have a record count, check if we are past the end of the recordset
If (MM_rsCount <> -1) Then
If (MM_offset >= MM_rsCount Or MM_offset = -1) Then ' past end or move last
If ((MM_rsCount Mod MM_size) > 0) Then ' last page not a full repeat region
MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
Else
MM_offset = MM_rsCount - MM_size
End If
End If
End If

' move the cursor to the selected record
MM_index = 0
While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1))
MM_rs.MoveNext
MM_index = MM_index + 1
Wend
If (MM_rs.EOF) Then
MM_offset = MM_index ' set MM_offset to the last possible record
End If

End If
%>
<%
' *** Move To Record: if we dont know the record count, check the display range

If (MM_rsCount = -1) Then

' walk to the end of the display range for this page
MM_index = MM_offset
While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size))
MM_rs.MoveNext
MM_index = MM_index + 1
Wend

' if we walked off the end of the recordset, set MM_rsCount and MM_size
If (MM_rs.EOF) Then
MM_rsCount = MM_index
If (MM_size < 0 Or MM_size > MM_rsCount) Then
MM_size = MM_rsCount
End If
End If

' if we walked off the end, set the offset based on page size
If (MM_rs.EOF And Not MM_paramIsDefined) Then
If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
If ((MM_rsCount Mod MM_size) > 0) Then
MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
Else
MM_offset = MM_rsCount - MM_size
End If
End If
End If

' reset the cursor to the beginning
If (MM_rs.CursorType > 0) Then
MM_rs.MoveFirst
Else
MM_rs.Requery
End If

' move the cursor to the selected record
MM_index = 0
While (Not MM_rs.EOF And MM_index < MM_offset)
MM_rs.MoveNext
MM_index = MM_index + 1
Wend
End If
%>
<%
' *** Move To Record: update recordset stats

' set the first and last displayed record
rsMessaggi_first = MM_offset + 1
rsMessaggi_last = MM_offset + MM_size

If (MM_rsCount <> -1) Then
If (rsMessaggi_first > MM_rsCount) Then
rsMessaggi_first = MM_rsCount
End If
If (rsMessaggi_last > MM_rsCount) Then
rsMessaggi_last = MM_rsCount
End If
End If

' set the boolean used by hide region to check if we are on the last record
MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
%>
<%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters

Dim MM_keepNone
Dim MM_keepURL
Dim MM_keepForm
Dim MM_keepBoth

Dim MM_removeList
Dim MM_item
Dim MM_nextItem

' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "") Then
MM_removeList = MM_removeList & "&" & MM_paramName & "="
End If

MM_keepURL=""
MM_keepForm=""
MM_keepBoth=""
MM_keepNone=""

' add the URL parameters to the MM_keepURL string
For Each MM_item In Request.QueryString
MM_nextItem = "&" & MM_item & "="
If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
End If
Next

' add the Form variables to the MM_keepForm string
For Each MM_item In Request.Form
MM_nextItem = "&" & MM_item & "="
If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
End If
Next

' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
If (MM_keepBoth <> "") Then
MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
End If
If (MM_keepURL <> "") Then
MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1)
End If
If (MM_keepForm <> "") Then
MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
End If

' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
If (firstItem <> "") Then
MM_joinChar = "&"
Else
MM_joinChar = ""
End If
End Function
%>
<%
' *** Move To Record: set the strings for the first, last, next, and previous links

Dim MM_keepMove
Dim MM_moveParam
Dim MM_moveFirst
Dim MM_moveLast
Dim MM_moveNext
Dim MM_movePrev

Dim MM_urlStr
Dim MM_paramList
Dim MM_paramIndex
Dim MM_nextParam

MM_keepMove = MM_keepBoth
MM_moveParam = "index"

' if the page has a repeated region, remove 'offset' from the maintained parameters
If (MM_size > 1) Then
MM_moveParam = "offset"
If (MM_keepMove <> "") Then
MM_paramList = Split(MM_keepMove, "&")
MM_keepMove = ""
For MM_paramIndex = 0 To UBound(MM_paramList)
MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1)
If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then
MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
End If
Next
If (MM_keepMove <> "") Then
MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
End If
End If
End If

' set the strings for the move to links
If (MM_keepMove <> "") Then
MM_keepMove = MM_keepMove & "&"
End If

MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="

MM_moveFirst = MM_urlStr & "0"
MM_moveLast = MM_urlStr & "-1"
MM_moveNext = MM_urlStr & CStr(MM_offset + MM_size)
If (MM_offset - MM_size < 0) Then
MM_movePrev = MM_urlStr & "0"
Else
MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
End If
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>BLOG Home Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="blog.css" rel="stylesheet" type="text/css" />
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body>

<div align="center">
<img src="immagini_calabria/banner_prov.gif" />
</div>


<table width="500" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="22" align="center"><span class="Bussola" title="Sei in home">Home</span>
<span class="pipe">|</span> <span class="link"><a href="login.asp" title="Esegui il Login">Login</a></span>
<span class="pipe">|</span> <span class="link"><a href="registrati.asp" title="Registrati">Registrati</a></span>
<span class="pipe">|</span> <span class="link"><a href="aggiungi.asp" title="Inserisci un messaggio">Inserisci
Messaggio</a></span>
</td>
</tr>
</table>




<table width="500" border="0" align="center" cellpadding="0" cellspacing="0">

<tr>
<td colspan="2" align="center"><img src="imgBlog/Logo.gif" width="500" height="28" /></td>
</tr>
<tr>
<td height="30" colspan="2" align="center" class="tdlati"><img src="imgBlog/spacer.gif" width="300" height="20" /></td>
</tr>
<%
While ((Repeat1__numRows <> 0) AND (NOT rsMessaggi.EOF))
%>
<tr>
<td height="25" colspan="2" class="tdlati"><span class="Titolo"><%=(rsMessaggi.Fields.Item("Titolo").Value)%></span></td>
</tr>
<tr>
<td height="40" colspan="2" class="tdlati"><span class="testo"><%=(rsMessaggi.Fields.Item("Messaggio").Value)%></span></td>
</tr>
<tr>
<td width="351" height="27" class="tdleft"><span class="Testo">Inserito
da: <%=(rsMessaggi.Fields.Item("Username").Value)%> </span><span class="pipe">| </span><span class="testo">il <%=(rsMessaggi.Fields.Item("Giorno").Value)%></span></td>
<td width="249" align="center" class="tdright"><span class="link"><a href="modifica.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "IDBlog=" & rsMessaggi.Fields.Item("IDBlog").Value %>">Modifica</a></span>
<span class="pipe"> | </span> <span class="link"><a href="commenti.asp?idblog=<%=(rsmessaggi.fields.item("idblog").value)%>" onmouseup="MM_openBrWindow('commenti.asp?IDBlog=<%=(rsMessaggi.Fields.Item("IDBlog").Value)%>','commento','scrollbars=yes,width=477 height,height=350')">Aggiungi
un commento</a></span> </td>
</tr>
<tr>
<td height="23" colspan="2" align="center"><span class="pipe">::
- - ::</span></td>
</tr>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
rsMessaggi.MoveNext()
Wend
%>
</table>

<br />
<table border="0" width="62%" align="center">
<tr>
<td width="20%" align="center"> <% If MM_offset <> 0 Then %>
<span class="link"><a href="<%=MM_moveFirst%>">Primo</a></span>
<% End If ' end MM_offset <> 0 %> </td>
<td width="20%" align="center"> <% If MM_offset <> 0 Then %>
<span class="link"><a href="<%=MM_movePrev%>">Indietro</a> </span>
<% End If ' end MM_offset <> 0 %> </td>
<td width="23%" align="center"> <% If Not MM_atTotal Then %>
<span class="link"><a href="<%=MM_moveNext%>">Avanti</a></span>
<% End If ' end Not MM_atTotal %> </td>
<td width="20%" align="center"> <% If Not MM_atTotal Then %>
<span class="link"><a href="<%=MM_moveLast%>">Ultimo</a> </span>
<% End If ' end Not MM_atTotal %> </td>
</tr>
</table>
<br />

</tr>
</table>

<br /><br /><br /><br /><br />
<div align="center">
<a href="index.html"><img src="imgBlog/HOME02.gif" border="0" /></a>
</div>


</body>
</html>
<%
rsMessaggi.Close()
Set rsMessaggi = Nothing
%>

Grazie
 
Discussioni simili
Autore Titolo Forum Risposte Data
I Errore 80040220 nella newsletter con paginazione Classic ASP 0
felino [Image Transform] Errore nella generazione delle immagini croppate PHP 0
felino [PHP][MySQL] Errore nella query PHP 6
P Errore nella sintassi SQL WordPress 0
P dovè l'errore nella pagina di login? PHP 46
valient13 errore nella query PHP 5
minatore Errore nella check PHP 12
O Errore nella visualizzazione della pratica Classic ASP 2
S Errore nella connessione Mysql PHP 2
D Errore di visualizzazione nella pagina Flash 1
A Errore nella visualizzazione dei risultati di una search page Classic ASP 4
M Errore nella visualizzazione del carattere € Classic ASP 0
K ERRORE NELLA VISUALIZZAZIONE con IE PHP 2
A Errore nella connessione ad un database PHP 1
K Errore nella query PHP 1
K Inserimento query Errore 1366 PHP 4
F errore 1062 su campo nuovo MySQL 4
N Errore interno Access MS Access 2
R mi da errore dove inizia il while PHP 1
R Recupero di permalink di un sito che è stato eliminato per errore WordPress 5
R Yoast SEO errore semafori sempre rossi SEO e Posizionamento 0
S Visualizza l'errore di creazione in MSSQL Database 4
simgia Cordova errore quando cerco di emulare o creare la app Sviluppo app per Android 2
P Errore nell'indirizzo degli elementi HTML e CSS 2
Jensen Errore di sintassi con DELETE PHP 3
H Errore su array associativo PHP 1
FDF182 ERRORE 1292 PHP 4
P errore 404 con javascript Javascript 2
felino Windows 7: errore 80072EFE su Windows Update Windows e Software 1
A errore http://datatables.net/tn/7 PHP 4
M Errore visualizzazione meta tag title e description SEO e Posizionamento 1
A Errore durante il salvataggio Photoshop 0
M Errore configurazione motion detection nvr Hikvision DS-7616 IP Cam e Videosorveglianza 0
voldemort [c] Errore di segmentazione (core dump creato) C/C++ 1
T SSD - errore sistema Hardware 2
R Navigare sito con cURL, mi restituisce errore PHP 0
L File CSV con app inventor da errore Sviluppo app per Android 2
A Errore visualizzazione selezione testo Photoshop 0
I Postman 400 Errore di richiesta non valida Programmazione 0
S Errore PHP - Notice: Undefined index ... PHP 14
U Campo vuoto data errore Fatal error: PHP 2
R Errore UPDATE tabella mysql PHP 1
R W10 Segnalazione di errore su terminale USB Windows e Software 0
G non riesco a capire quale sia l'errore [SQL] MySQL 2
E Errore di lettura php in html PHP 8
A php metodo post jquery non da mai errore jQuery 4
W Errore di run-time di Microsoft VBScript error '800a0035' Impossibile trovare il file Classic ASP 0
B Errore unexpected '$variabile' (T_VARIABLE) in your code on line PHP 2
M errore dopo passaggio Php 7.2 PHP 6
S -> Errore PHP 8

Discussioni simili