|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
写软件都是想的时间比写的时间要长的.如果反过来了就得看看是什么原因了.另外大家可以回去问问公司里的小MM.(一般企业里,跟你们交付软件接触得最多的是她们)能够用cookie纪录您的网站是不是被保藏在确认被设为主页大概被保藏以后就不用要在扣问访客了<SCRIPTLANGUAGE="JavaScript">
<!--Begin
varexpDays=100;
url="http://www.aspxuexi.com";
title="Comeon";
functionGetCookie(name){
vararg=name+"=";
varalen=arg.length;
varclen=document.cookie.length;
vari=0;
while(i<clen){
varj=i+alen;
if(document.cookie.substring(i,j)==arg)
returngetCookieVal(j);
i=document.cookie.indexOf("",i)+1;
if(i==0)break;
}
returnnull;
}
functionSetCookie(name,value){
varargv=SetCookie.arguments;
varargc=SetCookie.arguments.length;
varexpires=(argc>2)?argv[2]:null;
varpath=(argc>3)?argv[3]:null;
vardomain=(argc>4)?argv[4]:null;
varsecure=(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":"");
}
functionDeleteCookie(name){
varexp=newDate();
exp.setTime(exp.getTime()-1);
varcval=GetCookie(name);
document.cookie=name+"="+cval+";expires="+exp.toGMTString();
}
varexp=newDate();
exp.setTime(exp.getTime()+(expDays*24*60*60*1000));
functionamt(){
varcount=GetCookie(count)
if(count==null){
SetCookie(count,1)
return1
}
else{
varnewcount=parseInt(count)+1;
DeleteCookie(count)
SetCookie(count,newcount,exp)
returncount
}
}
functiongetCookieVal(offset){
varendstr=document.cookie.indexOf(";",offset);
if(endstr==-1)
endstr=document.cookie.length;
returnunescape(document.cookie.substring(offset,endstr));
}
functioncheckCount(){
varcount=GetCookie(count);
if(count==null){
count=1;
SetCookie(count,count,exp);
if((navigator.appName=="MicrosoftInternetExplorer")&&(parseInt(navigator.appVersion)>=4)){
window.external.AddFavorite(url,title);
}
else{
varmsg="Dontforgettobookmarkus!";
if(navigator.appName=="Netscape")msg+="(CTRL-D)";
alert(msg);
}
}
else{
count++;
SetCookie(count,count,exp);
}
}
checkCount();
//End-->
</script>
asp对于服务器的要求较高,一般的服务器如果访问量一大就垮了,不得不重启。 |
|