|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
使用cdonts,可以发送、查看邮件,实现webmail的功能。结合wsh,可以实现对nt主机的管理,如nt用户管理、iis虚拟主机设置、exchange邮箱设置等等,就像管理本地机一样方便。解答|成绩1.怎样最小化、最年夜化、封闭窗口
答:<objectid=hh1classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<paramname="command"value="minimize"></object>
<objectid=hh2classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<paramname="command"value="maximize"></object>
<objectid=hh3classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<paramname="command"value="close"></object>
<inputtype=buttonvalue=最小化onclick=hh1.click()>
<inputtype=buttonvalue=最年夜化onclick=hh2.click()>
<inputtype=buttonvalue=封闭onclick=hh3.click()>
2.怎样运动页面缓存
答:htm网页
<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache,must-revalidate">
<metahttp-equiv="expires"content="wed,26feb199708:21:57gmt">
大概<metahttp-equiv="expires"content="0">
asp网页
response.expires=-1
response.expiresabsolute=now()-1
response.cachecontrol="no-cache"
php网页
header("expires:mon,26jul199705:00:00gmt");
header("cache-control:no-cache,must-revalidate");
header("pragma:no-cache");
3.怎样反省一段字符串是不是全由数字构成
<scriptlanguage="javascript"><!--
functionchecknum(str){returnstr.match(/d/)==null}
alert(checknum("1232142141"))
alert(checknum("123214214a1"))
//--></script>
4.怎样猎取呆板信息
答本机ip<%=request.servervariables("remote_addr")%>
服务器名<%=request.servervariables("server_name")%>
服务器ip<%=request.servervariables("local_addr")%>
服务器端口<%=request.servervariables("server_port")%>
服务器工夫<%=now%>
iis版本<%=request.servervariables"server_software")%>
剧本超不时间<%=server.scripttimeout%>
本文件路径<%=server.mappath(request.servervariables("script_name"))%>
服务器cpu数目<%=request.servervariables("number_of_processors")%>
服务器解译引擎<%=scriptengine&"/"&scriptenginemajorversion&"."&scriptengineminorversion&"."&scriptenginebuildversion%>
服务器操纵体系<%=request.servervariables("os")%>
5.怎样让日期相减
日期减往天数即是第二个日期
<scriptlanguage=javascript>
functioncc(dd,dadd)
{
//能够加上毛病处置
vard=newdate(dd.replace("-","/"))
d.setdate(d.getdate()+dadd)
alert(d.getfullyear()+"年"+(d.getmonth()+1)+"月"+d.getdate()+"日")
}
cc("2002-2-28",2)
</script>
6.如何经由过程asp的手腕来反省来访者是不是用了代办署理
<%ifrequest.servervariables("http_x_forwarded_for")""then
response.write"<fontcolor=#ff0000>您经由过程了代办署理服务器,"&_
"实在的ip为"&request.servervariables("http_x_forwarded_for")
endif
%>
7.取得窗口的巨细
document.body.clientWidth,document.body.clientHeight
document.body.offsetWidth,document.body.offsetHeight
8.判别一个表是不是存在:
ifexists(select*fromdbo.sysobjectswhereid=object_id(表名)andOBJECTPROPERTY(id,NIsUserTable)=1)
droptable表名
GO
从publish表中掏出第n条到第m条的纪录:
SELECTTOPm-n+1*
FROMpublish
WHERE(idNOTIN
(SELECTTOPn-1id
FROMpublish))
id为publish表的关头字
9.怎样完成一连转动
<divid="marquees"><br/><br/>
数据内里读出来的<br/>
</div>
<scriptlanguage="JavaScript">
marqueesHeight=200;
stopscroll=false;
with(marquees){
style.width=0;
style.height=marqueesHeight;
style.overflowX="visible";
style.overflowY="hidden";
noWrap=true;
onmou搜索引擎优化ver=newFunction("stopscroll=true");
onmou搜索引擎优化ut=newFunction("stopscroll=false");
}
document.write(<divid="templayer"style="position:absolute;z-index:1;visibility:hidden"></div>);
preTop=0;currentTop=0;
functioninit(){
templayer.innerHTML="";
while(templayer.offsetHeight<marqueesHeight){
templayer.innerHTML+=marquees.innerHTML;
}
marquees.innerHTML=templayer.innerHTML+templayer.innerHTML;
setInterval("scrollUp()",10);
}</p>asp,你就只能等着微软给你解决,它不乐意你就只好悲催。而且asp跑在windows服务器上,windows服务器跟linux比起来简直弱爆了! |
|