asp文件删除函数
asp文件删除函数 function deletefile(filename) if filename then filename=server.mappath(filename) set fso=se
2021-12-07 14:44
145 
asp换行符
在asp中的换行符可以用常量:vbcrlf 和函数:chr(13)来使用; response.write 登陆成功&vbcrlf&欢迎使用 content=replace(content,vbcrlf,)
2021-12-07 14:44
129 
asp中进一取整
asp中进一取整 a=6 b=5 if a mod b=0 then c=int(a/b) else c=int(a/b)+1 end if response.write(c)
2021-12-07 14:44
94 
asp OpenTextFile打开读取文件内容
2021-12-07 14:45
152 
ASP开发规范
ASP开发规范 一、 统一VBSCRIPT和ASP程序编写规范: (一)变量命名规则: 由于在ASP和VBSCRIPT中因为不需要声明变量,同时不能声明变量的类型,但为了提高代码的可读性,养成好的开发习惯,对
2021-12-07 14:45
153 
asp检查用户是否仍然与服务器相连
asp检查用户是否仍然与服务器相连 if response.isclientconnected=true then response.write(用户仍然保持连接) else response.write(用
2021-12-07 14:45
81 
asp做随时间改变的问候语
asp做随时间改变的问候语 dim h h=hour(now()); if h
2021-12-07 14:45
79 
创建欢迎cookie
创建欢迎cookie dim user_name response.cookies(numvists).expiles=date+365 numvists=request.cookies(numvists)
2021-12-07 14:45
138 
T:0.007177s,M:351.94 KB
返回顶部 留言