欢迎来到天天文库
浏览记录
ID:9875481
大小:691.51 KB
页数:38页
时间:2018-05-11
《html教程_asp教程——vbscript语言》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第5章VBScript语言3.2VBScript编程基础变量:dim常量:constConstMyString="这是一个字符串。"ConstMyAge=49ConstCutoffDate=#6-1-97#运算符注意一个特殊的运算符:字符串连接(&)例如:abc&cdef=abccdef
2、%DimtemTem=hour(now())Iftem<12thenStrg=“早上好”ElseStrg=“您好”Endif%><%=strg%>VBScript流程控制条件语句If...Then...Else语句SelectCase语句循环语句Do...Loop:当(或直到)条件为True时循环。While...Wend:当条件为True时循环。For...Next:指定循环次数,使用计数器重复运行语句。ForEach...Next:对于集合中的每项或数组中的每个元素,重复执行一组语句。If...Then...Else语句If条件then语句1Else语句2Endif
3、>
4、Endsub%>DimIi=2Ifimod2=0thenMsgbox”这是一个偶数!”Elsemsgbox”这是一个奇数!”EndifSelectCase语句Selectcase测试表达式Case表达式值1语句Case表达式值2语句Caseelse语句Endselect多路选择结构语句no=inputbox("请输入一个1-5之间的数字:","中议英")selectcasenocase1m
5、sg="a"case2msg="b"case3msg="c"caseelsemsg="对不起,超过范围了"endselectmsgboxno&"的英文为"&msg
6、e68msgbox=“D“Caseelsemsgbox=“Z“EndselectDo循环语句Do[while/untile循环条件]循环体[exitdo]Loop
7、uage="vbscirpt">DimI,stri=1DowhileI<10i=i+1LoopStr=cstr(i)Msgbox”现在变量的值是:”&strSubchwhile()Dimcounter,mynumCounter=0Mynum=9DoMynum=mynum-1Counter=counter+1Loopwhilemynum>0msgbox“循环重复了”&counter&“次”EndsubForEach...Next
此文档下载收益归作者所有