commit c293ff318d5a2a077a6a2989cd7bc6e649f65c9f Author: editor <@51Aspx.com> Date: Wed May 15 15:49:44 2024 +0800 初始化 diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..3ece427 --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,41 @@ +51ASPX无刷新仿GOOGLE波形扭曲彩色ASP.NET验证码 + +一、源码描述 +环境:VS2022  + +二、功能介绍 +无刷新:也就是一般网站都有的“看不清,点击更换”、“更换验证码”的那种功能 +波形扭曲:类似google验证码,这个能更有效的防止验证码被机器人攻破,具体的扭曲程度可以自行设置(正弦曲线Wave扭曲图片产生波形滤镜效果) +彩色:字符颜色都是随机的 +大小写:也是随机的,当然为了输入方便没有对大小写进行限制,也可以自己修改哦 +注释详细:各个参数都有很详细的说明,容易上手 +为了显示扭曲效果,默认字体大小为40像素,可以自行修改 + +三、注意事项 +ctrl+F5运行即可。 + + + + + + +作者: 51aspx + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/VerifyColorTwistCode +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: https://www.51aspx.com + 讨论圈: https://club.51aspx.com/ + +平台声明: + +1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用; +2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有; +3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com ); +4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性; + +友情提示: + 一般数据库文件默认在 DB_51Aspx 文件夹下 + 默认账号密码一般均为51Aspx + 关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help diff --git a/Backup/Default.aspx b/Backup/Default.aspx new file mode 100644 index 0000000..5a1e257 --- /dev/null +++ b/Backup/Default.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="VerifyColorCode_51aspx._Default" %> + + + + + + �����ɫ��֤�룬ʵ���˵��ˢ��Ч������ϸע�ͣ�|-51aspx.com + + +
+
+ +�����壿�������
+
+ diff --git a/Backup/Default.aspx.cs b/Backup/Default.aspx.cs new file mode 100644 index 0000000..bf78227 --- /dev/null +++ b/Backup/Default.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.IO; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; + +namespace VerifyColorCode_51aspx +{ + //��Դ��������www.51aspx.com(���������������) + //51aspxʵ�ֲ�ɫ��֤�� diff --git a/Backup/Default.aspx.designer.cs b/Backup/Default.aspx.designer.cs new file mode 100644 index 0000000..a43c261 --- /dev/null +++ b/Backup/Default.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace VerifyColorCode_51aspx { + + + /// + /// _Default class. diff --git a/Backup/Properties/AssemblyInfo.cs b/Backup/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..653ce73 --- /dev/null +++ b/Backup/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("VerifyColorCode_51aspx")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("chuguo")] +[assembly: AssemblyProduct("VerifyColorCode_51aspx")] +[assembly: AssemblyCopyright("Copyright © chuguo 2007")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/Backup/VerifyCode.aspx b/Backup/VerifyCode.aspx new file mode 100644 index 0000000..f576d1f --- /dev/null +++ b/Backup/VerifyCode.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="VerifyCode.aspx.cs" Inherits="VerifyColorCode_51aspx.VerifyCode" %> + + + + + + Untitled Page + + + +
+ +
+ + diff --git a/Backup/VerifyCode.aspx.cs b/Backup/VerifyCode.aspx.cs new file mode 100644 index 0000000..3f0405d --- /dev/null +++ b/Backup/VerifyCode.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Drawing; + +namespace VerifyColorCode_51aspx +{ + public partial class VerifyCode : System.Web.UI.Page diff --git a/Backup/VerifyCode.aspx.designer.cs b/Backup/VerifyCode.aspx.designer.cs new file mode 100644 index 0000000..1fffac0 --- /dev/null +++ b/Backup/VerifyCode.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace VerifyColorCode_51aspx +{ + + public partial class VerifyCode + { diff --git a/Backup/VerifyColorCode_51aspx.csproj b/Backup/VerifyColorCode_51aspx.csproj new file mode 100644 index 0000000..c172e9e --- /dev/null +++ b/Backup/VerifyColorCode_51aspx.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {39867F41-4934-4858-9EC7-1A95B4DFCBB9} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + VerifyColorCode_51aspx + VerifyColorCode_51aspx + + + true diff --git a/Backup/Web.config b/Backup/Web.config new file mode 100644 index 0000000..3546846 --- /dev/null +++ b/Backup/Web.config @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/Default.aspx b/Default.aspx new file mode 100644 index 0000000..5a1e257 --- /dev/null +++ b/Default.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="VerifyColorCode_51aspx._Default" %> + + + + + + �����ɫ��֤�룬ʵ���˵��ˢ��Ч������ϸע�ͣ�|-51aspx.com + + +
+
+ +�����壿�������
+
+ diff --git a/Default.aspx.cs b/Default.aspx.cs new file mode 100644 index 0000000..bf78227 --- /dev/null +++ b/Default.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.IO; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; + +namespace VerifyColorCode_51aspx +{ + //��Դ��������www.51aspx.com(���������������) + //51aspxʵ�ֲ�ɫ��֤�� diff --git a/Default.aspx.designer.cs b/Default.aspx.designer.cs new file mode 100644 index 0000000..a43c261 --- /dev/null +++ b/Default.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace VerifyColorCode_51aspx { + + + /// + /// _Default class. diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..653ce73 --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("VerifyColorCode_51aspx")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("chuguo")] +[assembly: AssemblyProduct("VerifyColorCode_51aspx")] +[assembly: AssemblyCopyright("Copyright © chuguo 2007")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/UpgradeLog.htm b/UpgradeLog.htm new file mode 100644 index 0000000..38421f0 --- /dev/null +++ b/UpgradeLog.htm @@ -0,0 +1,15 @@ + + + + Migration Report +