1. Pie de foto de la imagen 1
2. Pie de foto de la imagen 2..............
y asi con las demas fotos,
estoy usando este codigo apra abrir el archivo y leerlo, pero no encuentro la manera de como leerlo para cada foto,
este codigo estoy usando
Código HTML:
<% Const ForReading = 1 Const Create = False Dim FSysObj Dim TS Dim strLine Dim strFileName 'nombre del fichero a mostrar strFileName = Server.MapPath("texto.txt") 'Creación del objeto FileSystemObject Set FSysObj = Server.CreateObject("Scripting.FileSystemObject") ' Abrimos el fichero Set TS = FSysObj.OpenTextFile(strFileName, ForReading, Create) If not TS.AtEndOfStream Then Response.Write "<FONT FACE=Verdana SIZE=1>" Do While not TS.AtendOfStream ' Leemos el fichero linea a linea y lo mostramos strLine = TS.ReadLine Response.Write i & " " & Server.HTMLEncode(strLine) & "<br>" loop End If ' cerramos y destruimos los objetos TS.Close Set TS = Nothing Set FSysObj = Nothing %>