Object Moved Here

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Daniel Bruno

    #1

    Object Moved Here

    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?
  • Richard Burte

    #2
    Re: Object Moved Here

    Are you using the ASP.NET Response.Redire ct 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


    "Daniel Bruno" <daniel-bruno@usa.net> wrote in message
    news:111501c393 ea$d6286df0$a10 1280a@phx.gbl.. .[color=blue]
    > 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?[/color]


    Comment

    Working...