473,499 Members | 1,990 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 25123
'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
3562
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
415
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
6854
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
3404
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
4989
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
1790
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
2166
by: Rob R. Ainscough | last post by:
Sorry to hear about the job cuts and Oracle now out sourcing to India. Rob.
2
3584
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
12026
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
7174
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
7220
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...
1
6894
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7388
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...
1
4919
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4600
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3099
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
1
665
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
297
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.