allora ho modificato questo codice qui...:

<%
Response.Expires = 0
Dim rs, cn, sql
Set rs = Server.CreateObject("ADODB.Recordset")
Set cn = Server.CreateObject("ADODB.Connection")
sql = "SELECT * FROM tbNews ORDER BY tbNews.IDNews DESC"
cn.Open "DSN=news;"

Set rs.ActiveConnection = cn
rs.CursorType = adOpenStatic
rs.LockType = adLockOptimistic
rs.Source = "tbNews"
rs.Open sql, cn

x = 0

Do until(x=5)
x = x + 1
Response.Write("titolo" & x & "=" & rs("Titolo") & "&link" & x & "=" & rs("Link"))
rs.MoveNext
If x<5 then Response.Write("&")
Loop

rs.Close
Set rs=Nothing
%>


con questo:


<%
DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; "
DSNtemp=dsntemp & "DBQ=" & server.mappath("ordine.mdb")
sqlstmt = "SELECT * FROM giornale ORDER BY id DESC"
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sqlstmt, DSNtemp, 3, 3

titolo = rs("titolo")
'id = rs("ID")
link = ""&rs("titolo")&""


'Response.Expires = 0
'Dim rs, cn, sql
'Set rs = Server.CreateObject("ADODB.Recordset")
'Set cn = Server.CreateObject("ADODB.Connection")
'sql = "SELECT * FROM tbNews ORDER BY tbNews.IDNews DESC"
'cn.Open "DSN=news;"

'Set rs.ActiveConnection = cn
'rs.CursorType = adOpenStatic
'rs.LockType = adLockOptimistic
'rs.Source = "tbNews"
'rs.Open sql, cn

x = 0

Do until(x=5)
x = x + 1
Response.Write("titolo" & x & "=" & rs("Titolo") & "&id" & x & "=" & rs("id"))
rs.MoveNext
If x<5 then Response.Write("&")
Loop

rs.Close
Set rs=Nothing
%>

adesso a video riesco a vedere i titoli ma siccome nel db non c'è un campo link, ma tramite l'id e la pagina view.asp io visualizzo il record. questo in normale asp mi funge, solo che ora applicato al flash stampo a video il risultato ma non riesco a raggiungere la pagina... come faccio?
so di non essermi espresso in maniera chiara...