Object Moved Here

  • Thread starter Thread starter Daniel Bruno
  • Start date Start date
D

Daniel Bruno

When I use redirection on ASP.NET I get the the message:
"Object moved here". Then I have to click on the link to
go to the destination page.

Is there a way to prevent this from happening, so that
the system redirects automatically to the destination
page?
 
Are you using the ASP.NET Response.Redirect method? The error that you are
describing sounds like a standard HTTP 302 error, letting your user agent (a
browser I assume) know that the resource has moved to another URL. You may
want to try an absolute rather than a relative URL in the argument...

Cheers
Richard
 
Back
Top