Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Object Moved error in netscape

Status
Not open for further replies.

froggerIII

Programmer
Jul 19, 2000
119
US
I have a page that kind of acts like an inventory/shopping cart page. After a user deletes one of the items, netscape comes up with an "Object moved, click here to....", then when the user clicks on the "here" hyper link, it redirects back to the inventory/shopping cart page and everything is fine (the record has been deleted) Is there a way to fix this?
 
Ok, here's my quick fix. I looked at the asptoday article and it didn't help in this situation. (Netscrape is a bear)
We're already buffering output (we -- i mean i work with frogger) etc.
basically, i did this kind of dealy (below) and it fixes it for netscape. Of course i'd like to know a shorter way : )
If you know any please hook me up.

If IE Then
Response.Redirect....
ElseIf NS Then
%>
<HTML>
<HEAD>
<SCRIPT language=&quot;javascript&quot;>
window.location = &quot;...&quot;;
</SCRIPT>
</HEAD>
<BODY>
</BODY>
</HTML>
<%
End If
 
What if you are not using ASP but are using Cold Fusion? [sig]<p>Matthew Wall<br><a href=mailto: > </a><br><a href= > </a><br> [/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top