Apr 08

Object Moved - Asp

Tag: ASP, Programación, Softwaredeambulando @ 5:40 pm

Otro problema con asp con solución encontrada aquí

SafeRedir "http://www.motobit.com"

Sub SafeRedir(ByVal URL)
  Response.Buffer = True
  Response.Status = "302 Object moved"
  Response.AddHeader "Location", URL
  Response.Write "<HTML><Head>"
  Response.Write "<META HTTP-EQUIV=Refresh CONTENT=""0;URL=" & URL & """>"
  Response.Write "<Script>window.location='" & URL & "';</Script>"
  Response.Write "</Head>"
'  Response.Write "<Body> This page was moved <A href=""" & URL & """>here</A>"
  Response.Write "</HTML>"
End Sub

Deja un comentario