Formulario inscripciones] [Comunicación datos atletas] [FORO Galicia Atletica] [Web antigua]
[Nuevo Album de Fotos del Club] [+ fotos en FotoAtletismo.com]
martes 23 de octubre de 2007
Pésame
Etiquetas: p
Suscribirse a Entradas [Atom]
Ourense At. Academia PostalClub Ourense Atletismo Academia Postal. Web Oficial. |
|
Formulario inscripciones] [Comunicación datos atletas] [FORO Galicia Atletica] [Web antigua]
Etiquetas: p
Suscribirse a Entradas [Atom]
El Club |
| Directiva |
| Cuerpo técnico |
| Los Atletas |
| Reglamento 2006/07 Impresos: Socios Gastos Premios |
| Vestuario Oficial |
| Patrocinadores |
| Estadística |
| Participaciones 2006-07 |
| Records
Club Aire Libre - Pista Cubierta |
| Medalleros: [2005/06][04/05][03/04] |
| Finalistas Nacionales |
| Más Atletismo |
| Calendario 2007/08 |
| Mínimas 2007: Nacionales: [P.C.][A.L.] Gallegas: [P.C.][A.L.] |
| Pistas "Josefina Salgado" |
|
Próximas competiciones |
|
<%call ProximasCompeticiones %> |
%
sub ProximasCompeticiones
on error resume next
set Con = Server.CreateObject("ADODB.Connection")
Con.Open "DSN=ourenseatletismo.com.calendario"
sSQL="SELECT * FROM Calendario " & _
" WHERE fecha>=date() and fecha <= (date() + 31) and (ambito='GAL' or cto_nacional )" & _
" ORDER BY fecha "
'
Set RS=Con.Execute (sSQL)
if RS.EOF THEN ' informo de que no hay datos
response.write ("No se encontraron pruebas en el calendario")
else
' hago un bucle para cada uno de los meses
fmes=0
while not rs.eof
if fmes <> rs("fecha") then
fmes = rs("fecha")
response.write ("
" & rs("fecha") & "
")
end if
response.write (" - " )
if len("" & rs("URL_PaginaWeb")) > 0 then
response.write ("")
end if
response.write (rs("competicion"))
if len("" & rs("URL_PaginaWeb")) > 0 then
response.write ("")
end if
response.write( " (" & rs("localidad") & ")
")
rs.movenext
wend
end if
end sub
function Qfoto()
Dim intLowerBound ' Lower bound of the random number range
Dim intUpperBound ' Upper bound of the random number range
Dim intRangeSize ' Size of the range
Dim sngRandomValue ' A random value from 0 to intRangeSize
Dim intRandomInteger ' Our final result - random integer to return
intLowerBound = 1
intUpperBound = 276
Randomize()
' Find range size
intRangeSize = intUpperBound - intLowerBound + 1
' Get a random number from 0 to the size of the range
sngRandomValue = intRangeSize * Rnd()
' Center the range of possible random numbers over the desired result set
sngRandomValue = sngRandomValue + intLowerBound
' Convert our value to an integer
intRandomInteger = Int(sngRandomValue)
Qfoto = intRandomInteger
end function
%>