摘要:
区别: setInterval函数的用法与setTimeout完全一致,区别仅仅在于setInterval指定某个任务每隔一段时间就执行一次,也就是无限次的定时执行。 取消定时器:(clearTimeout和clearInterval) setTimeout和setInterval函数,都返回一个表 阅读全文
摘要:
一丶删除文件 1 public string DelFile(string fileRelativePath) 2 { 3 4 try 5 { 6 string filePath = Server.MapPath("~" + fileRelativePath); 7 8 //if (System.I 阅读全文