c# - ASP.net, Redirect fine on localhost, but won't redirect on webhost -


i facing strange problem.

i trying navigate page after session timeout. it's working on localhost, it's able redirect choosen page. won't on webhost :/

anyone can help?

here code:

  if (remainingtime >= 0) {             displaysessiontimeout()         } else {                             pagemethods.sendstatustodb(onsuccess);              function onsuccess() {                  clearinterval(intervalhandle);                  window.location = "http://zaghilionheart.com/greenhousehomepage.aspx";               }            } 


Comments

Popular posts from this blog

What can cause "Required Package 'IndyCore' not found" when compiling a Delphi 2010 project? -

Change the color of an oval at click in Java AWT -