| leventaltintas Yeni Üye
 
  
 
 Kayıt Tarihi: 20-Kasım-2012
 Gönderilenler: 1
 
   | 
          Arkadaşlar kolay gelsin,
           | Gönderen: 18-Aralık-2012 Saat 10:49 | Kayıtlı IP |   |  
           | 
 |  Bir yarışma sitesi yapıyorum. Dolayısıyla soru sorulduğunda veya cevap verildiğinde bir önceki sayfaya dönüş olmamasını istiyorum, BACK tuşuna basılınca istediğim bir sayfaya yönlenmesini istiyorum.
 ASP forumlarını dolaştım şu kodları kullandım ama olmadı . Hala back tuşu çalışıyor.
 Derdime bir çare lütfen...
 
 <meta http-equiv="Content-Type" content="text/html; charset=windows-1254" />
 
 <meta forua="true" http-equiv="Cache-Control" content="no-cache" />
 <meta forua="true" http-equiv="Pragma" content="no-cache" />
 <meta forua="true" http-equiv="Expires" content="0" />
 <meta http-equiv="Cache-Control" content="must-revalidate"/>
 <meta http-equiv="Cache-Control" content="max-age=0"/>
 <meta http-equiv="Cache-Control" content="no-cache"/>
 <meta http-equiv="refresh" content="" />
 
 <%
 Response.Expires = -1
 Response.ExpiresAbsolute = Now() - 1
 Response.AddHeader "pragma" ,"no-cache"
 Response.AddHeader "cache-control" ,"private"
 Response.CacheControl = "no-cache"
 %>
 
 |