
14/03/2006, 21:45
|
| | Fecha de Ingreso: septiembre-2003
Mensajes: 182
Antigüedad: 21 años, 7 meses Puntos: 1 | |
Error al desplegarme el resultado de mi pagina Hola amigos fijense que estoy haciendo una pequeña pagina con codigo asp pero me manda el siguiente error:
Tipo de error:
Error de Microsoft VBScript en tiempo de ejecución (0x800A0035)
Archivo no encontrado
/objeto.asp, line 12
Les dejo mi codigo esperando que me puedan ayudar se los agradeceria
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Noticia Alternativas</title>
<%
Set fs = Server.CreateObject("Scripting.FileSystemObject")
Function GetFileDate(argURL)
Set fileobj = fs.GetFile(Server.MapPath(argURL))
GetFileDate = fileobj.DateLastModified
Set fileobj = Nothing
End Function
%>
</head>
<body>
<h1>Noticias Alternativas</h1>
<table border = "0" cellpadding="0" cellspacing="5">
<tr>
<th>Tema</th>
<th>Ultima Actualizacion</th>
</tr>
<tr>
<td><a href="revoltfr.htm">Noticias de la revolucion francesa</a></td>
<td><%=GetFileDate("revoltfr.htm")%></td>
</tr>
<tr>
<td><a href="revoltam.htm">Noticias de la revolucion americana</a></td>
<td><%=GetFileDate("revoltam.htm")%></td>
</tr>
<tr>
<td><a href="revoltgg.htm">Noticias de los revoltosos grupos 'grunge'</a></td>
<td><%=GetFileDate("revoltgg.htm")%></td>
</tr>
</table>
</body>
</html> |