Ver Mensaje Individual
  #6 (permalink)  
Antiguo 20/12/2009, 06:59
Avatar de SOVEREK
SOVEREK
 
Fecha de Ingreso: julio-2008
Mensajes: 47
Antigüedad: 16 años, 9 meses
Puntos: 0
Solucionado con Server.Execute

Muchas gracias por tu ayuda Myakire, ha logrado que funcioase utilizando server.execute, la instrucción queda así:

Código ASP:
Ver original
  1. <%
  2.     On Error resume next
  3.    
  4.     apdo = request.querystring("apdo")
  5.    
  6.     if apdo="" Then
  7.        
  8.         Server.Execute("apartados/0-inicio.asp")
  9.  
  10.     else
  11.         Server.Execute("apartados/"& apdo & ".asp")
  12.     End If
  13.     %>

Un saludo