"Object moved to here." in firefox or "The page cannot be displayed" in IE

  • Thread starter Thread starter JohnZing
  • Start date Start date
J

JohnZing

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.

the problem occurs only when i try to run the application hosted in my
hosting provider, not in my local IIS server.

any ideas?
thank you.
 
Hi John,

One thing to try is to change the caching. Try this?

<%@ Page Language="VB" %>
<script runat="server">
Sub page_Load
Response.Cache.SetCacheability(HttpCacheability.Public)
end sub
' Insert page code here

</script>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top