Leisureeen

导航

2020年4月11日 #

HotspotXY

摘要: ‎January ‎15, ‎2019那天晚上我写完一个VB应用程序,功能是可以让电脑放热点出去。 ini配置文件(HotspotXY.ini): 1 Leisureeen 2 12345678 3 0 主窗体文件(main.frm): VERSION 5.00 Begin VB.Form main 阅读全文

posted @ 2020-04-11 16:42 Leisureeen 阅读(223) 评论(0) 推荐(0) 编辑

2020年3月3日 #

TestCookie

摘要: 设计要求: 默认首页为“pages/index.html”,有生成32位大写字母(A~F)和数字(0~9)混合的随机字符串功能,有设置Cookie,读取Cookie的功能。 前端HTML页面(index.html): <!DOCTYPE html> <html> <head> <meta chars 阅读全文

posted @ 2020-03-03 16:36 Leisureeen 阅读(255) 评论(0) 推荐(0) 编辑

2020年2月27日 #

前端与数据库交互

摘要: 设计要求: 前端的HTML页面可以对数据库的一个数据表进行增删改查,并将结果以一个div的形式进行输出。 前端HTML页面(index.html): <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" 阅读全文

posted @ 2020-02-27 20:44 Leisureeen 阅读(3543) 评论(0) 推荐(0) 编辑

2020年2月21日 #

Security Encode & Decode

摘要: 加密的方法是由某管理系统的登录密码加密方法修改得到的,解密的方法是本人写的。 1 <html> 2 <head> 3 <title>Powered By Leisureeen</title> 4 </head> 5 <script language="JavaScript"> 6 function 阅读全文

posted @ 2020-02-21 13:29 Leisureeen 阅读(628) 评论(0) 推荐(0) 编辑

2020年2月15日 #

sizeof运算符、strlen()函数和转义字符

摘要: 本篇文章posted on 2019-12-23 12:58 本人之前写过一篇类似的文章(链接:sizeof运算符和strlen()函数),也比较深入,但是和本篇相比,本篇更加深入。 首先请看下面的代码,这个代码应该输出什么。 下面是C语言代码。 1 #include<stdio.h> 2 3 in 阅读全文

posted @ 2020-02-15 12:01 Leisureeen 阅读(744) 评论(0) 推荐(0) 编辑

JS