for i=1 to 4
Response.Write(formatDataTIme(now(),i))
next
for i=0 to 100
Response.write(string(5,i))
next
exit property
博客展示了两段ASP代码。一段通过循环调用formatDataTIme函数输出当前时间的不同格式,另一段循环输出指定长度和字符的字符串,最后使用exit property语句。
for i=1 to 4
Response.Write(formatDataTIme(now(),i))
next
for i=0 to 100
Response.write(string(5,i))
next
exit property

被折叠的 条评论
为什么被折叠?