Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Response.Redirect not always redirecting

We have a simple Response.Redirect on a page that is working inconsistently (IIS 6.0). Most of the time it redirects correctly, but we're getting some users that are complaining that instead of redirecting, they are getting the "302 Object moved to here" page. The page displays the header information with the correct location. If you click "here," it redirects to the correct page.

Any ideas why it would display the 302 message sporadically?

like image 763
SkunkSpinner Avatar asked Nov 17 '25 02:11

SkunkSpinner


1 Answers

302 IS the code response.redirect returns. I also saw a note to do a client-side

window.location = 'url'

but it does sound like a browser setting.

like image 68
n8wrl Avatar answered Nov 20 '25 09:11

n8wrl