代码搜索:VbScript
找到约 10,000 项符合「VbScript」的源代码
代码结果 10,000
www.eeworm.com/read/182192/9212745
asp 3_2.asp
简单的服务器端VBScript示例
dim a,b,c
a=request("a")
b=request("b")
c=cint(a)*cint(b)
Response.write a&"*"
Response.write b&"="
Response.
www.eeworm.com/read/182192/9212748
asp 3_4.asp
显示变量的Variant子类型
Dim a,b,c
a="hello"
b=False
c=123
Response.write typename(a)&""
Response.write typename(b)&""
Response.wr
www.eeworm.com/read/182192/9212754
htm 3_16.htm
history对象使用
window.document.write("you have visited "&history.length&" sites")
www.eeworm.com/read/182192/9212755
asp 3_6.asp
使用OPTION EXPLICIT语句
va="Hello Everyone!"
response.write va