Webmaster Forumu

Geri git   Webmaster Forumu > Webmaster Kaynak Eğitim Tanıtım Hizmet > Webmaster Genel Konular

Webmaster Genel Konular Webmaster Genel Konular

Cevapla
 
LinkBack Seçenekler Stil
  #1 (permalink)   iTrader 
Alt 2006-03-30, 16:35
FB-DeViL - ait Kullanıcı Resmi (Avatar)
Member
 
Üyelik tarihi: Dec 2005
Mesajlar: 213
Tecrübe Puanı: 0
iTrader: %0/0
FB-DeViL has a little shameless behaviour in the past
Question 1 ipye 1 popup kodu lazım

forumda aradım bazı popup kodları buldum denedim ama olmadı

1 ipye 1 kere açılsın popup her index.php gelince acılıyor cok sinir bir durum

cvblarınızı bekliyorum ..





not : topiği yanlış yere açmışım " HTML DHTML XML Javascript - Web scripting " taşınması lazım sanırım
Alıntı ile Cevapla

  #2 (permalink)   iTrader 
Alt 2006-03-30, 16:46
Junior Member
 
Üyelik tarihi: Jan 2006
Mesajlar: 38
Tecrübe Puanı: 0
iTrader: %0/0
NoTTinG is an unknown quantity at this point
Standart

Bende aramıştım malesef bulamadım...!
Alıntı ile Cevapla

  #3 (permalink)   iTrader 
Alt 2006-03-30, 16:49
FB-DeViL - ait Kullanıcı Resmi (Avatar)
Member
 
Üyelik tarihi: Dec 2005
Mesajlar: 213
Tecrübe Puanı: 0
iTrader: %0/0
FB-DeViL has a little shameless behaviour in the past
Standart

Hadi Vardır Bilen :S
Alıntı ile Cevapla

  #4 (permalink)   iTrader 
Alt 2006-03-30, 16:52
Junior Member
 
Üyelik tarihi: Mar 2006
Mesajlar: 11
Tecrübe Puanı: 0
iTrader: %0/0
php5 is an unknown quantity at this point
Standart

Google da arama yapinca soyle bisey buldum:
<head> </head> arasina koyulacakmis:

Alıntı:

<script>
//specify page to pop-under
var popunder="http://www.siteismi.com/popupsayfasi.html"
//specify popunder window features
//set 1 to enable a particular feature, 0 to disable
var winfeatures="width=800,height=510,scrollbars=1,res izable=1,toolbar=1,location=1,menubar=1,status=1,d irectories=0"
//Pop-under only once per browser session? (0=no, 1=yes)
//Specifying 0 will cause popunder to load every time page is loaded
var once_per_session=1
///No editing beyond here required/////
function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
// set index of beginning of value
end = document.cookie.indexOf(";", offset);
// set index of end of cookie value
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(off set, end))
}
}
return returnvalue;
}
function loadornot(){
if (get_cookie('popunder')==''){
loadpopunder()
document.cookie="popunder=yes"
}
}
function loadpopunder(){
win2=window.open(popunder,"",winfeatures)
win2.blur()
window.focus()
}
if (once_per_session==0)
loadpopunder()
else
loadornot()
</script>
Alinti:
http://www.netevolution.co.uk/scripts.asp?ID=46
Alıntı ile Cevapla

  #5 (permalink)   iTrader 
Alt 2006-03-30, 17:07
FB-DeViL - ait Kullanıcı Resmi (Avatar)
Member
 
Üyelik tarihi: Dec 2005
Mesajlar: 213
Tecrübe Puanı: 0
iTrader: %0/0
FB-DeViL has a little shameless behaviour in the past
Standart

Teşekkürler

ama olmadı :S
Alıntı ile Cevapla

  #6 (permalink)   iTrader 
Alt 2006-03-30, 17:22
Junior Member
 
Üyelik tarihi: Mar 2006
Mesajlar: 11
Tecrübe Puanı: 0
iTrader: %0/0
php5 is an unknown quantity at this point
Standart

Kodu yeniledim yanlismis, tekrar dene.
Alıntı ile Cevapla

  #7 (permalink)   iTrader 
Alt 2006-03-30, 17:25
Unutmam - ait Kullanıcı Resmi (Avatar)
Senior Member
 
Üyelik tarihi: Jan 2006
Mesajlar: 865
Blog Entries: 1
Tecrübe Puanı: 2
iTrader: %0/0
Unutmam is on a distinguished road
Standart

<script LANGUAGE="JavaScript">
<!--
var expDays = 1;

var page = "http://www.forum.iyinet.com";
var windowprops = "width=600,height=500,location=no,toolbar=yes,menu bar=yes,scrollbars=yes,resizable=yes";

function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() - 1);
var cval = GetCookie (name);
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
function amt(){
var count = GetCookie('count')
if(count == null) {
SetCookie('count','1')
return 1
}
else {
var newcount = parseInt(count) + 1;
DeleteCookie('count')
SetCookie('count',newcount,exp)
return count
}
}
function getCookieVal(offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}

function checkCount() {
var count = GetCookie('count');
if (count == null) {
count=1;
SetCookie('count', count, exp);

window.open(page, "", windowprops);

}
else {
count++;
SetCookie('count', count, exp);
}
}
checkCount();
// End -->
</script>
Alıntı ile Cevapla

  #8 (permalink)   iTrader 
Alt 2006-03-30, 17:38
FB-DeViL - ait Kullanıcı Resmi (Avatar)
Member
 
Üyelik tarihi: Dec 2005
Mesajlar: 213
Tecrübe Puanı: 0
iTrader: %0/0
FB-DeViL has a little shameless behaviour in the past
Standart

@Unutmam

Bu kodu hiç bir zaman unutmayacam sağol


@php5

sanada teşekkürler

Konu FB-DeViL tarafından (2006-03-30 Saat 17:41 ) değiştirilmiştir..
Alıntı ile Cevapla

Cevapla


Seçenekler
Stil

Yetkileriniz
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is Açık
Smileler Açık
[IMG] Kodları Açık
HTML-KodlarıKapalı
Trackbacks are Açık
Pingbacks are Açık
Refbacks are Açık

Benzer Konular
Konu Konuyu Başlatan Forum Cevaplar Son Mesaj
Popup blockerlara yakalanmayacak popup kodu varmı ? UndeaD PHP 4 2006-09-03 13:37
popup kodu lazım Rcilan Webmaster Genel Konular 10 2006-05-07 11:49
Sayfada askıda kalan popup kodu lazım. RemiX PHP 6 2005-11-16 21:55
txt linkke tıklayıp popup açma kodu lazım RemiX Webmaster Genel Konular 3 2005-10-19 23:51
Acil popup KOdu Lazım baris Java JSP C# 1 2005-09-01 13:16


Bütün Zaman Ayarları WEZ +2 olarak düzenlenmiştir. Şu Anki Saat: 19:45 .


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0

Firefox