笔记
PB菜鸟
好好学习,天天向上。
展开
-
C# 绘制图片随机验证码
C# 绘制图片随机验证码原创 2022-11-25 14:53:15 · 918 阅读 · 0 评论 -
C#从数据库表读取图片并显示
//1、新增类Images用来读取图片数据using System;using System.Data;using System.Data.SqlClient;using System.Drawing;using System.IO;namespace DisplayImages{ public class Images { string imageFilename = null; byte[] imageBytes = null; .原创 2022-04-19 11:06:17 · 2749 阅读 · 0 评论 -
校验用户密码是否包含大写字母、小写字母、数字
//增加用户密码校验规则,必须包含大写字母、小写字母、数字、至少8位密码。sring ls_pwdlong ll_char,ll_rtnif len(ls_pwd) < 8 then MessageBox('提示','密码长度至少要8位字符!') return end if for ll_char = 48 to 57 if pos(ls_pwd,char(ll_char)) > 0 then ll_rtn = 1 exit end if ne...原创 2021-03-22 20:31:23 · 1057 阅读 · 0 评论