<%
set oConn=Server.CreateObject("ADODB.Connection")
set CONCIERTO=Server.CreateObject("ADODB.Recordset")
oConn.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ="&Server.MapPath("DATOS/datos_conciertos.mdb")
SQL="SELECT * FROM T_CONCIERTOS WHERE T_CONCIERTOS.FECHA>=Date() AND T_CONCIERTOS.PORTADA=-1"
CONCIERTO.OPEN sql, oconn, 3, 1
intTotalRecords = CONCIERTO.RecordCount
Randomize()
intRandomNumber = Int((intTotalRecords * Rnd))
CONCIERTO.Move intRandomNumber
%>
En <%response.write(CONCIERTO("MES"))%> ...