Niente ho cercato e ricercato ma sono in un vicolo cieco...soprattutto per quanto riguarda il codice asp..che nn conosco bene...nemmeno xhtml ma almeno qualcosina in + capisco!

ti posto il codice...
Spero che la lunghezza del codice nn comporti motivo di lamentele o di trasgressioni a regole interne al forum..ma nn sapevo come fare...
Ti ringrazio per la disponibilità e per l'aiuto..
Ciao Giorgio!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>


<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Anfe Sede provinciale di Siracusa</title>

<link href="lista.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
-->
</style>
</head>
<body>
<div id="container">
<div id="testata">
<div class= "Data"><%=FormatDateTime(date(), VbLongDate)%>-
<%=FormatDateTime(time(), vbShortTime)%>
<div id="Logo">[img]Immagini/Banner Sito AnfeOK1.gif[/img]</div>
</div>
<ul id="nav">
<li id="active"><span>Home</span>[*]<span>Chi siamo</span>[*]<span>Dove siamo</span>[*]<span>Contattaci</span>[*]<span>Mission</span>[*]<span>Staff</span>[*]<span>News</span>[*]<span>Area riservata</span>[/list]
</div>

<div id="box1">

<form id="search" action="cerca.asp" method="post"/>
<fieldset>
<legend>Cerca nel sito</legend>
<input type="text" name="cerca" value="cerca nel sito..." size="13" />
<input type="submit" value="Invia" />
</fieldset>



<div id="menu">
<ul>[*]Formazione
<ul>[*]Corsi per non occupati[*]Corsi per occupati[*]Corsi in partenza[/list]
[*]Progetti
<ul>[*]Progetti realizzati[*]Progetti in corso[/list]
[*]Support
<ul>[*]Phone[*]Email[*]QnA[/list]
[*]History
<ul>[*]1900 - 1940[*]1941 - 1980 [*]1981 - Present time[/list]
[/list]
</div>
<div id="Utenti">
Visite effettuate: <%=Application("users")%>
</div>
</div>
<div id="contenuto2">
<div class="tes">
<h2>A.N.F.E.</h2>
<h2>Associazione Associazione Nazionale Famiglie Emigrati</h2>
[img] [/img]


et, tortor.</p>
<h3>Story Title</h3>


[img][/img] or. </p>
</div>
</div>
<div id="box_colonna2">
<div class="menu3">


<%
Dim rsNews
Dim rsNews_numRows

Set rsNews = Server.CreateObject("ADODB.Recordset")
rsNews.ActiveConnection = MM_News_STRING
rsNews.Source = "SELECT * FROM news"
rsNews.CursorType = 0
rsNews.CursorLocation = 2
rsNews.LockType = 1
rsNews.Open()

rsNews_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index

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

Dim rsNews_total
Dim rsNews_first
Dim rsNews_last

' set the record count
rsNews_total = rsNews.RecordCount

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

' set the first and last displayed record
rsNews_first = 1
rsNews_last = rsNews_first + rsNews_numRows - 1

' if we have the correct record count, check the other stats
If (rsNews_total <> -1) Then
If (rsNews_first > rsNews_total) Then
rsNews_first = rsNews_total
End If
If (rsNews_last > rsNews_total) Then
rsNews_last = rsNews_total
End If
If (rsNews_numRows > rsNews_total) Then
rsNews_numRows = rsNews_total
End If
End If
%>

<%
' *** Recordset Stats: if we don't know the record count, manually count them

If (rsNews_total = -1) Then

' count the total records by iterating through the recordset
rsNews_total=0
While (Not rsNews.EOF)
rsNews_total = rsNews_total + 1
rsNews.MoveNext
Wend

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

' set the number of rows displayed on this page
If (rsNews_numRows < 0 Or rsNews_numRows > rsNews_total) Then
rsNews_numRows = rsNews_total
End If

' set the first and last displayed record
rsNews_first = 1
rsNews_last = rsNews_first + rsNews_numRows - 1

If (rsNews_first > rsNews_total) Then
rsNews_first = rsNews_total
End If
If (rsNews_last > rsNews_total) Then
rsNews_last = rsNews_total
End If

End If
%>


<%
Dim Repeat2__numRows
Dim Repeat2__index

Repeat2__numRows = -1
Repeat2__index = 0
rsNews_numRows = rsNews_numRows + Repeat2__numRows
%>
<%
Dim MM_paramName
%>

<%
' *** 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 = "&amp 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
%>

<%
if((rsNews_total=0))Then
response.Write"<p align='center'>"
response.Write"<font face=Verdana size=2 color='#000099'>"
response.Write("Non ci sono attualmente articoli da leggere")
response.Write"</font>"
response.Write"</p>"
end if
%>

<%
if((rsNews_total >=1)) Then
%>
<table width="150" cellpadding="0" cellspacing="0">

<tr>
<td colspan="3" alt="20">Sommario delle news di oggi <%=Date()%></td>
</tr>

<%
While ((Repeat1__numRows <> 0) AND (NOT rsNews.EOF))
%>
<tr>
<td width="1" height="19"></td>
<td width="150" height="19"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">"><%=(rsNews.Fields.Item("titolo").Value)%></font></td>
<td width="1" height="19"></td>
</tr>
<tr>
<td width="1" height="4"></td>
<td width="150" height="4"></td>
<td width="1" height="4"></td>
</tr>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
rsNews.MoveNext()
Wend
%>
<tr>
<td width="1" height="1"></td>
<td width="150" height="1"></td>
</tr>
</table>
<%
end if
%>

</div>

<div class="menu5" >

<form action="AddUser.asp" method="post" name="form1" id="form1">
<h4>Iscriviti alla Mailing-list.</h4>


Inserisci il tuo indirizzo email e riceverai le ultime novità sulle nostre attività
<input type="text" name="email" /></p>



<input type="button" value="Conferma" name="B12" onclick="javascript: controllo();" /></p>
</form>
</div>

</div>
<div id="footer">
<div class="center notes">


gio.it - Consulente professionale naturalista subacqueo - 2006 - Numero Verde: yuyruututruuturu</p>
</div>
</div>
</div>
</body>

</html>

<% rsNews.Close()
Set rsNews = Nothing
%>