|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp对于服务器的要求较高,一般的服务器如果访问量一大就垮了,不得不重启。程序<scriptlanguage="javascript">
//-----------------------------debug------------------------------
//varproperty_string="||"splitbythechar“||“///////////////////////////////
//poweredBYAIRZEN
//qq:39192170
//e_mail:airzen@sohu.com
//website:www.windeye.com
//date:2004-8-21
//转贴请保存作者信息
functionget_value(obj){
varthis_star,this_end;
varreturn_value;
this_star=property_string.indexOf(obj.name+"=");
if(this_star==-1){//notfound
return_value=null;
}else{
this_end=property_string.indexOf("||",this_star);
if(this_end==-1){
this_end=10000;
}
return_value=property_string.substring(this_star+obj.name.length+1,this_end);
}
returnreturn_value;
}
functionauto_OP(obj){
varthis_type;
varthis_value;
this_type=obj.type;
this_value=get_value(obj);
if(this_value==null){
//alert("notexist");
returnfalse;
}
if(this_type=="text"){//input
obj.value=this_value;
}elseif(this_type=="textarea"){//textarea
obj.value=this_value;
}elseif(this_type=="select-one"){//select-one
for(varx=0;x<obj.length;x++){
if(obj[x].value==this_value){
obj[x].selected=true;
break;
}
}
}elseif(this_type=="radio"){//radio
if(obj.value==this_value){obj.checked=true;}
}elseif(this_type=="checkbox"){//checkbox
if(obj.value==this_value){obj.checked=true;}
}elseif(this_type=="hidden"){
obj.value=this_value;
}
}
functiondoc_init(form){
for(varx=0;x<form.length;x++){
auto_OP(form1[x]);
//document.write(x+"name:"+form[x].name+"value"+form1[x].value+"type:"+form1[x].type+"<br>");
}
}
varproperty_string="<%=out_txt%>";
doc_init(form1);
</script>
</p>Windows本身的所有问题都会一成不变的也累加到了它的身上。安全性、稳定性、跨平台性都会因为与NT的捆绑而显现出来; |
|