0

I have django supported web application. when i hit refresh button on a page the view method corresponding to the page's url is not being called. But it gets called when i re-enter the url in th address bar. can any one suggest the reason and the solution?

Vivek S
  • 5,384
  • 8
  • 51
  • 72

2 Answers2

0

check caching.

  1. first check cache meta tags on the client
  2. then check web server cache

Note: "GET" requets some times cached on the server or client automatically.

pylover
  • 7,670
  • 8
  • 51
  • 73
  • i am on server..client is on remote location..... i want to call view method whenever client hits refresh button.... – Vivek S Mar 30 '11 at 05:02
0

finally found the ans: just add the new tab command to your html page itself

Vivek S
  • 5,384
  • 8
  • 51
  • 72