|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
优点:简单易学、开发速度快、有很多年“历史”,能找到非常多别人做好的程序来用、配合activeX功能强大,很多php做不到的asp+activeX能做到,例如银行安全控件18.网页不会被缓存
HTM网页
<METAHTTP-EQUIV="pragma"CONTENT="no-cache">
<METAHTTP-EQUIV="Cache-Control"CONTENT="no-cache,
must-revalidate">
<METAHTTP-EQUIV="expires"CONTENT="Wed,26Feb1997
08: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");
19.反省一段字符串是不是全由数字构成
<scriptlanguage="Javascript"><!--
functioncheckNum(str){returnstr.match(/D/)==null}
alert(checkNum("1232142141"))
alert(checkNum("123214214a1"))
//--></script>
20.取得一个窗口的巨细
document.body.clientWidth,document.body.clientHeight
21.怎样判别是不是是字符
if(/[^x00-xff]/g.test(s))alert("含有汉字");
elsealert("满是字符");
22.TEXTAREA自顺应笔墨行数的几
<textarearows=1name=s1cols=27
onpropertychange="this.style.posHeight=this.scrollHeight">
</textarea>
23.日期减往天数即是第二个日期
<scriptlanguage=Javascript>
functioncc(dd,dadd)
{
//能够加上毛病处置
vara=newDate(dd)
a=a.valueOf()
a=a-dadd*24*60*60*1000
a=newDate(a)
alert(a.getFullYear()+"年"+(a.getMonth()+1)+"月"+
a.getDate()+"日")
}
cc("12/23/2002",2)
</script>
24.选择了哪个Radio
<HTML><scriptlanguage="vbscript">
functioncheckme()
foreachobinradio1
ifob.checkedthenwindow.alertob.value
next
endfunction
</script><BODY>
<INPUTname="radio1"type="radio"value="style"
checked>Style
<INPUTname="radio1"type="radio"value="barcode">Barcode
<INPUTtype="button"value="check"onclick="checkme()">
</BODY></HTML>
25.取得本页url的request.servervariables("")汇合
Response.Write"<TABLEborder=1><!--TableHeader
--><TR><TD><B>Variables</B></TD><TD><B>Value</B></TD></TR>"
foreachobinRequest.ServerVariables
Response.Write
"<TR><TD>"&ob&"</TD><TD>"&Request.ServerVariables(ob)&"</TD>
</TR>"
next
Response.Write"</TABLE>"
26.
本机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")%>
27.ENTER键可让光标移到下一个输出框
<inputonkeydown="if(event.keyCode==13)event.keyCode=9">
28.检测某个网站的链接速率:
把以下代码到场<body>地区中:
<scriptlanguage=Javascript>
tim=1
setInterval("tim++",100)
b=1
varautourl=newArray()
autourl[1]="www.njcatv.net"
autourl[2]="javacool.3322.net"
autourl[3]="www.ckuyun.com.cn"
autourl[4]="www.nuaa.edu.cn"
autourl[5]="www.cctv.com"
functionbutt(){
document.write("<formname=autof>")
for(vari=1;i<autourl.length;i++)
document.write("<inputtype=textname=txt"+i+"size=10
value=测试中……>=》<inputtype=textname=url"+i+"size=40>
=》<inputtype=buttonvalue=GO
onclick=w</p>ASP一般认为只能运行在IIS上,正如前面所提到的,这并不是十分正确,事实上,ASP也能运行在Apache上。ApacheASP可在任意Apache服务器上运行有限的ASP功能,所需做的,只需打开mod_perl。 |
|