473,395 Members | 1,471 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Object moved to here

In one of my asp.net apps a response.redirect is sometimes resulting in the
blank page with "Object moved to here." I've tried repsonse.clear and
response.buffer (true & false) but still get this error sproadically.
Understand this was problem in some older versions of browsers...I'm using
IE6
Brad
Nov 18 '05 #1
8 25112
'Response.BufferOutput = true has to be placed directly before the redirect
statement.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
"Brad" <no****@co.lane.or.us> wrote in message
news:ub**************@TK2MSFTNGP11.phx.gbl...
In one of my asp.net apps a response.redirect is sometimes resulting in the blank page with "Object moved to here." I've tried repsonse.clear and
response.buffer (true & false) but still get this error sproadically.
Understand this was problem in some older versions of browsers...I'm using
IE6
Brad

Nov 18 '05 #2
Hi Brad,

It seems that the problem you met is an existing issue of the Internet
Explorer, here is the related kb article:

#Internet Explorer Returns Error Message When Being Redirected
http://support.microsoft.com/?id=193489

Please have a look to see whether it helps. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #3
The kb article you mention is for IE4 and IE5. Does this issue exists for
IE6?
"Steven Cheng[MSFT]" <v-******@online.microsoft.com> wrote in message
news:tb**************@cpmsftngxa10.phx.gbl...
Hi Brad,

It seems that the problem you met is an existing issue of the Internet
Explorer, here is the related kb article:

#Internet Explorer Returns Error Message When Being Redirected
http://support.microsoft.com/?id=193489

Please have a look to see whether it helps. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #4
Did that already...and still does it...but again, not always.

"John Timney (Microsoft MVP)" <ti*****@despammed.com> wrote in message
news:ut**************@TK2MSFTNGP09.phx.gbl...
'Response.BufferOutput = true has to be placed directly before the redirect statement.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
"Brad" <no****@co.lane.or.us> wrote in message
news:ub**************@TK2MSFTNGP11.phx.gbl...
In one of my asp.net apps a response.redirect is sometimes resulting in

the
blank page with "Object moved to here." I've tried repsonse.clear and
response.buffer (true & false) but still get this error sproadically.
Understand this was problem in some older versions of browsers...I'm using IE6
Brad


Nov 18 '05 #5

Hi Brad,

Yes, the kb article is provided for IE4, 5, but based on my research, there
seems has some former issues dicussing on the same problem and the IE
version is 6. So I think you can have a try on the workarounds in the kb
article or even try requesting the hotfix mentioned in it. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #6
Also, if the KB article Steven suggests doesn't help you:

The actual cause is that your output is being seen as non-buffered data by
the browser. Thus, the response contains two packets of resulting data, the
first being a 302 Object Moved HTTP response. IE gets the first packet and
starts to redirect (correctly based on the HTTP header) and then receives
the second packet and stops the redirect, hence the moved message.

A workaround is to add an ihttpmodule to the chain that adds a html meta
refresh instead of using a response.redirect to the actual page output, thus
the browser actually receives the completed output terminated with a
response.end and on receiving the completed stream correctly moves to the
new page. This should work for all IE instances.
--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
"Steven Cheng[MSFT]" <v-******@online.microsoft.com> wrote in message
news:F6*************@cpmsftngxa10.phx.gbl...

Hi Brad,

Yes, the kb article is provided for IE4, 5, but based on my research, there seems has some former issues dicussing on the same problem and the IE
version is 6. So I think you can have a try on the workarounds in the kb
article or even try requesting the hotfix mentioned in it. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #7

Hi Brad,

Have you had a chance to check out the suggestions in my last reply or have
you got any further ideas on this issue? If there're anything else we can
help, please feel free to post here. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #8
I have a similar problem with IE6 - often getting "Object Moved Here" but
clicking the active Here link nets nothing. I don't understand what the
buffer suggestions mean as I am not very technie. I am also getting HTTP 500
internal server errors when clicking on links within sites - per Microsoft
help, this is a recent issue but I was unable to download the fix - message
said I had a newer IE version. I have downloaded SP2. I'm frustrated with
my limited site access and weary of resetting my home page on every reboot
(my.msn.com). I have the full Norton's internet security running and daily
scans come back clean.
Can someone help?

"Steven Cheng[MSFT]" wrote:

Hi Brad,

Have you had a chance to check out the suggestions in my last reply or have
you got any further ideas on this issue? If there're anything else we can
help, please feel free to post here. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Daniel Bruno | last post by:
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...
1
by: Shaun Dore | last post by:
Hello, I have an asp.net web application that redirects the user to the login page whenever his session is expired (using Response.Redirect). Most of the times, it works fine, but sometimes the...
1
by: JohnZing | last post by:
i tried to install asp.net forums all went ok, but after login i always get "Object moved to here." in firefox or "The page cannot be displayed" in IE when i hit refresh, the page loads fine. ...
1
by: Ganesh Ramamurthy | last post by:
Hi Experts, I am getting the following error when I do a Response.Redirect from an aspx page to another aspx page. I am using the following code in my global.asax Application_Error event to...
1
by: Skeptical | last post by:
Greetings, This question is related to Microsoft Reporting Services Web service. I tried asking it in RS groups but no one seems to be knowledgeable enough to answer, so I wanted to try my...
0
by: Ganesh Ramamurthy | last post by:
Hi Experts, I am working with asp.net C# to develop my web applications. Recently i had to modify one of my presently working applications. There was not much change except for a minor code...
22
by: Rob R. Ainscough | last post by:
Sorry to hear about the job cuts and Oracle now out sourcing to India. Rob.
2
by: Zester | last post by:
Hi, Sorry for this multi-posts; I don't know where the setting if it exists so I'm posting this to multiple groups. I was told that Response.Redirect would generate the http 302 Object Moved...
275
by: Astley Le Jasper | last post by:
Sorry for the numpty question ... How do you find the reference name of an object? So if i have this bob = modulename.objectname() how do i find that the name is 'bob'
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.