Sahin
21/06/2002, 09:48
Aslında Javascript, perl, asp, php ya da meta tagler ile bir çok yolu var sayfa yönlendirmenin ama bu soru sık sorulduğu için şimdilik kaynak teşkil etmesi amacı ile bir kaçını buraya eklemek istedim.
[list=1]
<script language="javascript">
self.location="gidilecek_sayfa.htm"
</script>
<script language="VBscript">
response.redirect"http://www.ceviz.net"
</script>
<script>
window.location = "http://www.adres.com";
</script>
<script LANGUAGE="JavaScript">
<!-- Begin
function redirectPage() {
var url640x480 = "http://www.isim.com/640x480";
var url800x600 = "http://www.isim.com/800x600";
var url1024x768 ="http://www.isim.com/1024x768";
if ((screen.width == 640) && (screen.height == 480))
window.location.href= url640x480;
else if ((screen.width == 800) && (screen.height == 600))
window.location.href= url800x600;
else if ((screen.width == 1024) && (screen.height == 768))
window.location.href= url1024x768;
else window.location.href= url640x480;
}
// End -->
</script>
veya meta tag ile <meta http-equiv="Refresh" content="1;URL=http://www.xxx.com/">
[/list=1]
gibi...
ASP ve PHP ile nasıl yazılıyor? Hakan ve Mustafa yazarlar artık :)
[list=1]
<script language="javascript">
self.location="gidilecek_sayfa.htm"
</script>
<script language="VBscript">
response.redirect"http://www.ceviz.net"
</script>
<script>
window.location = "http://www.adres.com";
</script>
<script LANGUAGE="JavaScript">
<!-- Begin
function redirectPage() {
var url640x480 = "http://www.isim.com/640x480";
var url800x600 = "http://www.isim.com/800x600";
var url1024x768 ="http://www.isim.com/1024x768";
if ((screen.width == 640) && (screen.height == 480))
window.location.href= url640x480;
else if ((screen.width == 800) && (screen.height == 600))
window.location.href= url800x600;
else if ((screen.width == 1024) && (screen.height == 768))
window.location.href= url1024x768;
else window.location.href= url640x480;
}
// End -->
</script>
veya meta tag ile <meta http-equiv="Refresh" content="1;URL=http://www.xxx.com/">
[/list=1]
gibi...
ASP ve PHP ile nasıl yazılıyor? Hakan ve Mustafa yazarlar artık :)